Merge "Enable scrolling for bugreport info dialog" into rvc-dev

This commit is contained in:
Rhed Jao
2020-06-05 10:23:59 +00:00
committed by Android (Google) Code Review

View File

@@ -14,58 +14,63 @@
limitations under the License. limitations under the License.
--> -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView
android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="15dp" android:layout_width="match_parent"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:focusableInTouchMode="false"
android:focusable="false"
android:importantForAutofill="noExcludeDescendants"
android:layout_width="wrap_content"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView <LinearLayout
android:orientation="vertical"
android:paddingTop="15dp"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:focusableInTouchMode="false" android:focusableInTouchMode="false"
android:focusable="false" android:focusable="false"
android:inputType="textNoSuggestions" android:importantForAutofill="noExcludeDescendants"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content">
android:text="@string/bugreport_info_name"/> <TextView
<EditText android:focusableInTouchMode="false"
android:id="@+id/name" android:focusable="false"
android:nextFocusDown="@+id/title" android:inputType="textNoSuggestions"
android:maxLength="30" android:layout_width="match_parent"
android:singleLine="true" android:layout_height="wrap_content"
android:inputType="textNoSuggestions" android:text="@string/bugreport_info_name"/>
android:layout_width="match_parent" <EditText
android:layout_height="wrap_content"/> android:id="@+id/name"
<TextView android:nextFocusDown="@+id/title"
android:focusableInTouchMode="false" android:maxLength="30"
android:focusable="false" android:singleLine="true"
android:layout_width="match_parent" android:inputType="textNoSuggestions"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:text="@string/bugreport_info_title"/> android:layout_height="wrap_content"/>
<EditText <TextView
android:id="@+id/title" android:focusableInTouchMode="false"
android:nextFocusUp="@+id/name" android:focusable="false"
android:nextFocusDown="@+id/description" android:layout_width="match_parent"
android:maxLength="80" android:layout_height="wrap_content"
android:singleLine="true" android:text="@string/bugreport_info_title"/>
android:inputType="textAutoCorrect|textCapSentences" <EditText
android:layout_width="match_parent" android:id="@+id/title"
android:layout_height="wrap_content"/> android:nextFocusUp="@+id/name"
<TextView android:nextFocusDown="@+id/description"
android:focusableInTouchMode="false" android:maxLength="80"
android:focusable="false" android:singleLine="true"
android:layout_width="match_parent" android:inputType="textAutoCorrect|textCapSentences"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:editable="false" android:layout_height="wrap_content"/>
android:text="@string/bugreport_info_description"/> <TextView
<EditText android:focusableInTouchMode="false"
android:id="@+id/description" android:focusable="false"
android:nextFocusUp="@+id/title" android:layout_width="match_parent"
android:singleLine="false" android:layout_height="wrap_content"
android:inputType="textMultiLine|textAutoCorrect|textCapSentences" android:editable="false"
android:layout_width="match_parent" android:text="@string/bugreport_info_description"/>
android:layout_height="wrap_content"/> <EditText
</LinearLayout> android:id="@+id/description"
android:nextFocusUp="@+id/title"
android:singleLine="false"
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>