Merge branch 'Feature/#50'

This commit is contained in:
2012-05-25 11:42:05 -04:00
6 changed files with 296 additions and 124 deletions

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>

View File

@@ -1,12 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/fragment_list_contianer"
<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:orientation="vertical" />
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@android:drawable/ic_menu_add" />
</ScrollView>
</RelativeLayout>