Home | History | Annotate | Download | only in layout-land
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <!-- A layout representing a single key in the dialpad -->
     18 <com.android.dialer.dialpadview.DialpadKeyButton
     19   xmlns:android="http://schemas.android.com/apk/res/android"
     20   style="@style/DialpadKeyButtonStyle">
     21 
     22   <LinearLayout
     23     style="@style/DialpadKeyInternalLayoutStyle"
     24     android:layout_gravity="right|center_vertical"
     25     android:baselineAligned="false"
     26     android:orientation="horizontal">
     27 
     28     <!-- Note in the referenced styles that we assign hard widths to these components
     29          because we want them to line up vertically when we arrange them in an MxN grid -->
     30 
     31     <com.android.dialer.dialpadview.DialpadTextView
     32       android:id="@+id/dialpad_key_number"
     33       style="@style/DialpadKeyNumberStyle"
     34       android:layout_marginBottom="0dp"
     35       android:layout_marginRight="@dimen/dialpad_key_margin_right"
     36       android:layout_gravity="right"/>
     37 
     38     <TextView
     39       android:id="@+id/dialpad_key_letters"
     40       style="@style/DialpadKeyLettersStyle"
     41       android:layout_width="@dimen/dialpad_key_text_width"
     42       android:layout_gravity="right|center"/>
     43   </LinearLayout>
     44 </com.android.dialer.dialpadview.DialpadKeyButton>
     45