30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/add_feature_button"
|
|
android:layout_alignParentTop="true"
|
|
android:paddingBottom="5dip" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/fragment_list_contianer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
</ScrollView>
|
|
|
|
<ImageButton
|
|
android:id="@id/add_feature_button"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:contentDescription="@string/add_feature"
|
|
android:src="@android:drawable/ic_menu_add" />
|
|
|
|
</RelativeLayout> |