apps-android-commons/commons/res/layout/fragment_multiple_uploads_list.xml
Brion Vibber e171d22fea Tweak input boxes so the IME doesn't eat fullscreen in landscape
android:imeOptions="flagNoExtractUI"
Will make screencasts suck less since they get forced to landscape...
2013-05-09 16:16:52 -07:00

23 lines
No EOL
951 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText android:id="@+id/multipleBaseTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/multiple_share_base_title"
android:imeOptions="flagNoExtractUi"
/>
<GridView android:id="@+id/multipleShareBackground"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:stretchMode="columnWidth"
android:numColumns="auto_fit"
android:listSelector="@null"
android:fadingEdge="none"
android:fastScrollEnabled="false"
/>
</LinearLayout>