Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
      3 
      4      Use of this source code is governed by a BSD-style license that can be
      5      found in the LICENSE file.
      6 -->
      7 
      8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      9               android:id="@+id/autofill_menu_text"
     10               android:layout_width="fill_parent"
     11               android:layout_height="44dp"
     12               android:minHeight="44dp"
     13               android:orientation="vertical"
     14               android:gravity="center_vertical">
     15   <TextView android:id="@+id/autofill_label"
     16             android:layout_width="wrap_content"
     17             android:layout_height="wrap_content"
     18             android:ellipsize="end"
     19             android:singleLine="true"
     20             android:textSize="18sp"
     21             android:includeFontPadding="false"
     22             android:layout_marginStart="10dp"
     23             android:layout_marginEnd="10dp"/>
     24   <TextView android:id="@+id/autofill_sublabel"
     25             android:layout_width="wrap_content"
     26             android:layout_height="wrap_content"
     27             android:textSize="14sp"
     28             android:textColor="#8b8b8b"
     29             android:ellipsize="end"
     30             android:singleLine="true"
     31             android:includeFontPadding="false"
     32             android:layout_marginStart="10dp"
     33             android:layout_marginEnd="10dp"/>
     34 </LinearLayout>
     35