Fix #6669 OSM Editing screen: show Save button above keyboard.
This commit is contained in:
parent
92a9f98bed
commit
7c67e911ba
1 changed files with 11 additions and 11 deletions
|
@ -19,7 +19,7 @@
|
||||||
app:contentInsetLeft="72dp"
|
app:contentInsetLeft="72dp"
|
||||||
app:contentInsetStart="72dp"/>
|
app:contentInsetStart="72dp"/>
|
||||||
|
|
||||||
<android.support.design.widget.CoordinatorLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
|
@ -39,8 +39,6 @@
|
||||||
<android.support.design.widget.TextInputLayout
|
<android.support.design.widget.TextInputLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="@string/shared_string_name"
|
|
||||||
android:importantForAutofill="noExcludeDescendants"
|
|
||||||
android:layout_marginLeft="72dp"
|
android:layout_marginLeft="72dp"
|
||||||
android:layout_marginRight="16dp">
|
android:layout_marginRight="16dp">
|
||||||
|
|
||||||
|
@ -64,7 +62,6 @@
|
||||||
<!--android:layout_marginLeft="72dp"-->
|
<!--android:layout_marginLeft="72dp"-->
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/poiTypeButton"
|
android:id="@+id/poiTypeButton"
|
||||||
android:contentDescription="@string/poi_dialog_poi_type"
|
|
||||||
android:layout_width="48dp"
|
android:layout_width="48dp"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_gravity="bottom"
|
android:layout_gravity="bottom"
|
||||||
|
@ -114,14 +111,17 @@
|
||||||
app:tabTextColor="@android:color/darker_gray"/>
|
app:tabTextColor="@android:color/darker_gray"/>
|
||||||
</android.support.design.widget.AppBarLayout>
|
</android.support.design.widget.AppBarLayout>
|
||||||
|
|
||||||
|
<ScrollView
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:fillViewport="true">
|
||||||
|
|
||||||
<android.support.v4.view.ViewPager
|
<android.support.v4.view.ViewPager
|
||||||
android:id="@+id/viewpager"
|
android:id="@+id/viewpager"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content" />
|
||||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
</ScrollView>
|
||||||
|
</LinearLayout>
|
||||||
</android.support.design.widget.CoordinatorLayout>
|
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:id="@+id/buttonDivider"
|
android:id="@+id/buttonDivider"
|
||||||
|
|
Loading…
Reference in a new issue