You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
XML
72 lines
2.3 KiB
XML
<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">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="830px">
|
|
|
|
<ListView
|
|
android:id="@+id/lv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/px_10"
|
|
android:divider="#00000000"
|
|
android:dividerHeight="0px"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_nodata"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="暂无数据" />
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="25dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_xz"
|
|
style="@style/button"
|
|
android:layout_width="300dp"
|
|
android:layout_gravity="center"
|
|
android:text="下载" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginTop="10px"
|
|
android:gravity="center"
|
|
android:visibility="gone"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_xz1"
|
|
style="@style/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_gravity="right"
|
|
android:layout_marginLeft="@dimen/px_20"
|
|
android:layout_marginRight="@dimen/px_20"
|
|
android:layout_weight="1"
|
|
android:text="下载" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_delete1"
|
|
style="@style/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_gravity="right"
|
|
android:layout_marginLeft="@dimen/px_20"
|
|
android:layout_marginRight="@dimen/px_20"
|
|
android:layout_weight="1"
|
|
android:text="删除" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|