12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

new Intent.... ああ、getApplication()か。

Posted at

あまりいないとは思うんだけど、(本当にあまりいないと思うけど)
久しぶりにAndroid触って、あれ、intentがーってなったので、一応メモっておく。

どこのサイト見ても、だいたいActicvityの画面遷移は

Intent intent = new Intent(MainActivity.this, SubActivity.class);
startActivity(intent);

みたいに書いてある。
でも、2ページ目、3ページ目とどんどんnewして画面遷移して行きたい時に、エラーとなって、10分ほど悩んでしまった。

解決策はこれ。

Intent intent = new Intent(getApplication(), SubSubActivity.class);
startActivity(intent);

getApplication()すれば、エラー無くできますよ。

ちなみに、getApplication()の方が、OutOfMemoryのリスクは少ないらしいです。

12
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?