| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright 2019 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:id="@+id/toggleable_flag" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="15dp" |
| android:orientation="vertical"> |
| |
| <!-- horizontal divider --> |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="1dp" |
| android:background="?android:attr/listDivider"/> |
| |
| <TextView |
| android:id="@+id/flag_name" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:textIsSelectable="true" |
| android:textStyle="bold" |
| android:textAppearance="?android:attr/textAppearanceMedium" |
| android:paddingBottom="2dp" |
| android:paddingTop="2dp" /> |
| |
| <TextView |
| android:id="@+id/flag_description" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:textAppearance="?android:attr/textAppearanceSmall" |
| android:textIsSelectable="true"/> |
| |
| <Spinner |
| android:id="@+id/flag_toggle" |
| android:spinnerMode="dialog" |
| android:layout_width="fill_parent" |
| android:layout_height="wrap_content" /> |
| |
| </LinearLayout> |