blob: deedc1c405fa0538f8adeb1e1502297ec5be2ebe [file]
<?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">
<!-- A compound drawable will be populated at runtime, but it's OK to configure drawablePadding now. -->
<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:drawablePadding="4dp"
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>