Android 应用开发笔记 - 图片视图(ImageView)
我们接上一节内容,来讲解这个节内容。
1.首先,新建一Layout XML文件,如下图:
然后,在面板拖拽,到,设置相关属性,
清单如下:
<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imgView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
2.首先新建一新class,如下图:
填写如下代码: