Commit 72504660 by Kunj Gupta

Fix - Bottom view issue in catalogue dynamic form.

parent f20b943c
...@@ -45,56 +45,59 @@ ...@@ -45,56 +45,59 @@
<ScrollView <ScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="match_parent"
android:layout_weight="9"
android:background="@android:color/white" android:background="@android:color/white"
android:requiresFadingEdge="vertical"> android:requiresFadingEdge="vertical">
<LinearLayout <LinearLayout
android:id="@+id/variable_screen_container_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@android:color/white" android:background="@android:color/white"
android:orientation="vertical" android:orientation="vertical"
android:padding="@dimen/normal_margin" /> android:padding="@dimen/normal_margin">
</ScrollView>
<RelativeLayout <LinearLayout
android:id="@+id/variable_screen_bottom_layout" android:id="@+id/variable_screen_container_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="wrap_content"
android:layout_weight="1" android:orientation="vertical" />
android:background="@android:color/white"
android:gravity="center_vertical">
<TextView <RelativeLayout
android:id="@+id/variable_screen_submit_text_view" android:id="@+id/variable_screen_bottom_layout"
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" android:gravity="center_vertical">
android:layout_marginRight="@dimen/normal_margin"
android:background="@drawable/submit_button_bg_with_border"
android:paddingBottom="@dimen/normal_margin"
android:paddingLeft="@dimen/extra_large_margin"
android:paddingRight="@dimen/extra_large_margin"
android:paddingTop="@dimen/normal_margin"
android:text="@string/submit_string"
android:textColor="@android:color/white" />
<TextView <TextView
android:id="@+id/variable_screen_back_text_view" android:id="@+id/variable_screen_submit_text_view"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginRight="@dimen/normal_margin" android:layout_alignParentRight="true"
android:layout_toLeftOf="@id/variable_screen_submit_text_view" android:layout_marginRight="@dimen/normal_margin"
android:background="@drawable/back_button_bg_with_border" android:background="@drawable/submit_button_bg_with_border"
android:paddingBottom="@dimen/normal_margin" android:paddingBottom="@dimen/normal_margin"
android:paddingLeft="@dimen/extra_large_margin" android:paddingLeft="@dimen/extra_large_margin"
android:paddingRight="@dimen/extra_large_margin" android:paddingRight="@dimen/extra_large_margin"
android:paddingTop="@dimen/normal_margin" android:paddingTop="@dimen/normal_margin"
android:text="@string/back_string" android:text="@string/submit_string"
android:textColor="@android:color/white" /> android:textColor="@android:color/white" />
</RelativeLayout>
<TextView
android:id="@+id/variable_screen_back_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/normal_margin"
android:layout_toLeftOf="@id/variable_screen_submit_text_view"
android:background="@drawable/back_button_bg_with_border"
android:paddingBottom="@dimen/normal_margin"
android:paddingLeft="@dimen/extra_large_margin"
android:paddingRight="@dimen/extra_large_margin"
android:paddingTop="@dimen/normal_margin"
android:text="@string/back_string"
android:textColor="@android:color/white" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
</LinearLayout> </LinearLayout>
</FrameLayout> </FrameLayout>
</LinearLayout> </LinearLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment