Android 之 ImageView(图片组件)
程序员文章站
2022-05-17 14:38:04
...
ImageView 图片组件:
属性:android:src="" 引用图片资源
测试代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="ImageView 组件测试" /> <ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:src="@drawable/ic_launcher" /> </LinearLayout>