「Android/画像/画像表示」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「以下に画像を設置 res/drawable/test.png res/layout/activity_main.xml <ImageView android:id="@+id/image1" android:layout_width="m...」) |
|||
行3: | 行3: | ||
res/layout/activity_main.xml | res/layout/activity_main.xml | ||
+ | <TextView | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:text="view start" /> | ||
<ImageView | <ImageView | ||
android:id="@+id/image1" | android:id="@+id/image1" | ||
android:layout_width="match_parent" | android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | android:layout_height="match_parent" /> | ||
+ | |||
+ | <TextView | ||
+ | android:layout_width="wrap_content" | ||
+ | android:layout_height="wrap_content" | ||
+ | android:text="view end" /> | ||
MainActivity.java | MainActivity.java | ||
ImageView imageView = (ImageView) findViewById(R.id.image1); | ImageView imageView = (ImageView) findViewById(R.id.image1); | ||
imageView.setImageResource(R.drawable.test); | imageView.setImageResource(R.drawable.test); |
2019年1月15日 (火) 18:59時点における版
以下に画像を設置
res/drawable/test.png
res/layout/activity_main.xml
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="view start" /> <ImageView android:id="@+id/image1" android:layout_width="match_parent" android:layout_height="match_parent" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="view end" />
MainActivity.java
ImageView imageView = (ImageView) findViewById(R.id.image1); imageView.setImageResource(R.drawable.test);