blob: db246f11fb9da56908638d7775d8423c658b14d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="vertical">
<Button
android:id="@+id/refreshBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/refresh_str" />
<ListView
android:id="@+id/dataBaseListView"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/refreshBtn" >
</ListView>
</RelativeLayout>
|