ImageView 例子

来源:互联网 发布:淘宝卡通行走人偶 编辑:程序博客网 时间:2024/06/06 20:10

 

java.lang.Object   ↳android.view.View    ↳android.widget.ImageView

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context=".MainActivity" >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerHorizontal="true"        android:layout_centerVertical="true"        android:text="图片显示" />            <ImageView        android:id="@+id/image_info"        android:layout_width="wrap_content"        android:layout_height="wrap_content"               android:src="@drawable/ic_launcher" /></LinearLayout>


 

0 0
原创粉丝点击