| <?xml version="1.0" encoding="utf-8"?> |
| |
| <!-- Copyright (C) 2016 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. --> |
| |
| <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/reviewerTable" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginBottom="10dp" |
| android:stretchColumns="1" |
| android:shrinkColumns="1" |
| android:background="@drawable/info_table"> |
| |
| <TableRow> |
| |
| <AutoCompleteTextView |
| android:id="@+id/reviewerInput" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginBottom="5dp" |
| android:layout_span="2" |
| android:hint="@string/reviewer_hint" |
| android:inputType="textEmailAddress" |
| android:singleLine="true" |
| android:imeActionLabel="Add" |
| android:imeActionId="4" |
| android:imeOptions="actionSend"/> |
| </TableRow> |
| |
| <TableRow> |
| |
| <TextView |
| android:id="@+id/reviewersLabel" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginBottom="3dp" |
| android:layout_span="2" |
| android:textSize="20sp" |
| android:text="@string/reviewers"/> |
| </TableRow> |
| </TableLayout> |