Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     17     android:orientation="horizontal"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent"
     20     android:gravity="center_vertical">
     21 
     22     <TextView
     23         android:id="@+id/one"
     24         android:layout_width="0dp"
     25         android:layout_height="wrap_content"
     26         android:layout_weight="1"
     27         android:text="@string/one"
     28         style="@style/InCallDialpad" />
     29 
     30     <TextView
     31         android:id="@+id/two"
     32         android:layout_width="0dp"
     33         android:layout_height="wrap_content"
     34         android:layout_weight="1"
     35         android:text="@string/two"
     36         style="@style/InCallDialpad" />
     37 
     38     <TextView
     39         android:id="@+id/three"
     40         android:layout_width="0dp"
     41         android:layout_height="wrap_content"
     42         android:layout_weight="1"
     43         android:text="@string/three"
     44         style="@style/InCallDialpad" />
     45 
     46     <TextView
     47         android:id="@+id/four"
     48         android:layout_width="0dp"
     49         android:layout_height="wrap_content"
     50         android:layout_weight="1"
     51         android:text="@string/four"
     52         style="@style/InCallDialpad" />
     53 
     54     <TextView
     55         android:id="@+id/five"
     56         android:layout_width="0dp"
     57         android:layout_height="wrap_content"
     58         android:layout_weight="1"
     59         android:text="@string/five"
     60         style="@style/InCallDialpad" />
     61 
     62     <TextView
     63         android:id="@+id/six"
     64         android:layout_width="0dp"
     65         android:layout_height="wrap_content"
     66         android:layout_weight="1"
     67         android:text="@string/six"
     68         style="@style/InCallDialpad" />
     69 
     70     <TextView
     71         android:id="@+id/seven"
     72         android:layout_width="0dp"
     73         android:layout_height="wrap_content"
     74         android:layout_weight="1"
     75         android:text="@string/seven"
     76         style="@style/InCallDialpad" />
     77 
     78     <TextView
     79         android:id="@+id/eight"
     80         android:layout_width="0dp"
     81         android:layout_height="wrap_content"
     82         android:layout_weight="1"
     83         android:text="@string/eight"
     84         style="@style/InCallDialpad" />
     85 
     86     <TextView
     87         android:id="@+id/nine"
     88         android:layout_width="0dp"
     89         android:layout_height="wrap_content"
     90         android:layout_weight="1"
     91         android:text="@string/nine"
     92         style="@style/InCallDialpad" />
     93 
     94     <TextView
     95         android:id="@+id/zero"
     96         android:layout_width="0dp"
     97         android:layout_height="wrap_content"
     98         android:layout_weight="1"
     99         android:text="@string/zero"
    100         style="@style/InCallDialpad" />
    101 
    102     <TextView
    103         android:id="@+id/pound"
    104         android:layout_width="0dp"
    105         android:layout_height="wrap_content"
    106         android:layout_weight="1"
    107         android:text="@string/pound"
    108         style="@style/InCallDialpad" />
    109 
    110     <TextView
    111         android:id="@+id/star"
    112         android:layout_width="0dp"
    113         android:layout_height="wrap_content"
    114         android:layout_weight="1"
    115         android:text="@string/star"
    116         style="@style/InCallDialpad" />
    117 </LinearLayout>