activity_choose_book.xml
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<RelativeLayout 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"
tools:context="com.hjx.miaohongentry.activity.ChooseBookActivity">
<RelativeLayout
android:layout_width="400dp"
android:layout_height="600dp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:background="@mipmap/choose_book_bg">
<LinearLayout
android:id="@+id/ll_choose_book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="70dp"
android:orientation="vertical">
<ListView
android:id="@+id/lv_book_list"
android:layout_width="wrap_content"
android:layout_height="450dp">
</ListView>
<Button
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:background="@mipmap/btn_ok"
android:layout_centerHorizontal="true"
android:layout_gravity="center"
android:text="确定"
android:gravity="center"
android:textColor="@color/colorWhite"
android:textSize="28sp"/>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>