现在的位置: 首页 > 综合 > 正文

Android 继承ListActivity在页面中添加其它控件

2018年05月16日 ⁄ 综合 ⁄ 共 938字 ⁄ 字号 评论关闭

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#00FFFF" >

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="100dip"
                android:src="@drawable/i1" />
        </LinearLayout>

        <ListView
            android:id="@id/android:list"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:drawSelectorOnTop="false" />

        <TextView
            android:id="@id/android:empty"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
</LinearLayout>

抱歉!评论已关闭.