Chromium Code Reviews| Index: chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
| diff --git a/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml b/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c6218d2a3d25bac0f88961d640603b804f068b76 |
| --- /dev/null |
| +++ b/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
| @@ -0,0 +1,28 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<LinearLayout |
| + xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:orientation="vertical" |
| + android:layout_width="fill_parent" |
|
Ted C
2017/06/05 18:24:48
s/fill/match
Xi Han
2017/06/05 20:30:02
Thanks!
|
| + android:layout_height="match_parent"> |
| + |
| + <TextView |
| + android:id="@+id/desc" |
| + android:textColor="#000000" |
|
Ted C
2017/06/05 18:24:48
@android:color/black
Xi Han
2017/06/05 20:30:02
Done.
|
| + android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small" |
| + android:paddingStart="20dip" |
|
Ted C
2017/06/05 18:24:48
dp is more common for us than dip, so i'd drop the
Xi Han
2017/06/05 20:30:02
Done.
|
| + android:paddingEnd="20dip" |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" /> |
| + |
| + <ListView |
| + android:id="@+id/browser_list" |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" |
| + android:divider="@null" |
| + android:dividerHeight="0dp" /> |
| + |
| +</LinearLayout> |