ImageView组件的主要功能是为图片展示提供一个容器
-
<?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout ? 定义线型布局管理器
-
xmlns:android=""
-
android:orientation="vertical" ? 所有组件垂直摆放
-
android:layout_width="fill_parent" ? 布局管理器宽度为屏幕宽度
-
android:layout_height="fill_parent"> ? 布局管理器高度为屏幕高度
-
<ImageView ? 定义图片显示组件
-
android:id="@+id/img" ? 此组件ID,程序中使用
-
android:src="@drawable/mldn_3g" ? 从drawable中读取图片ID
-
android:layout_width="fill_parent" ? 组件的宽度为屏幕宽度
-
android:layout_height="wrap_content" /> ? 组件的高度为图片高度
-
</LinearLayout>
020408_图片视图:ImageView.ppt
阅读(971) | 评论(0) | 转发(0) |