You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.5 KiB
92 lines
3.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2006 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!-- Dialpad in the Phone app. -->
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/dialpad"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:clipChildren="false">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
<include layout="@layout/dialpad_key_one" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/two"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/three"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/four"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/five"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/six"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/seven"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/eight"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<include layout="@layout/dialpad_key"
|
|
android:id="@+id/nine"
|
|
style="@style/DialpadKeyButtonStyle" />
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
<include layout="@layout/dialpad_key_star" />
|
|
<include layout="@layout/dialpad_key_zero" />
|
|
<include layout="@layout/dialpad_key_pound" />
|
|
<Space style="?attr/dialpad_margin_style" />
|
|
</LinearLayout>
|
|
<Space
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dialpad_bottom_space_height" />
|
|
</LinearLayout>
|