Xml文件  |  133行  |  5.59 KB

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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.
-->

<!-- Layout for the emergency dialer; see EmergencyDialer.java. -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/top"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingLeft="16dp"
        android:paddingRight="16dp">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="bottom"
            android:orientation="vertical">

        <!-- FrameLayout -->
        <com.android.phone.EmergencyActionGroup
                android:id="@+id/emergency_action_group"
                android:layout_height="64dp"
                android:layout_width="match_parent"
                android:layout_marginTop="16dp"
                android:layout_marginBottom="24dp">

            <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
                <Button android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:id="@+id/action1"
                        />
                <Button android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:id="@+id/action2"
                        />
                <Button android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:id="@+id/action3"
                        />
            </LinearLayout>

            <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:id="@+id/selected_container"
                    android:visibility="invisible"
                    android:focusable="true"
                    android:clickable="true">

                <View
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:backgroundTint="#ffe53935"
                        android:focusable="false"
                        android:clickable="false"
                        style="?android:attr/buttonStyle"/>

                <View
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:id="@+id/ripple_view"
                        android:backgroundTint="#22000000"
                        android:visibility="invisible"
                        android:focusable="false"
                        android:clickable="false"
                        style="?android:attr/buttonStyle"/>

                <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="vertical"
                        android:focusable="false"
                        android:clickable="false"
                        android:backgroundTint="#00000000"
                        style="?android:attr/buttonStyle">
                    <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:id="@+id/selected_label"
                            android:textAppearance="?android:attr/textAppearanceButton" />
                    <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:id="@+id/launch_hint"
                            android:text="@string/emergency_action_launch_hint"
                            android:textStyle="italic" />
                </LinearLayout>

            </FrameLayout>

        </com.android.phone.EmergencyActionGroup>

        <include layout="@layout/dialpad_view_unthemed"
                android:theme="@style/Dialpad_Dark" />

    </LinearLayout>

    <FrameLayout
        android:id="@+id/floating_action_button_container"
        android:layout_width="@dimen/floating_action_button_width"
        android:layout_height="@dimen/floating_action_button_height"
        android:layout_marginBottom="@dimen/floating_action_button_margin_bottom"
        android:layout_gravity="center_horizontal|bottom" >

        <ImageButton
            android:id="@+id/floating_action_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:background="@drawable/floating_action_button"
            android:contentDescription="@string/description_dial_button"
            android:src="@drawable/fab_ic_call"/>
    </FrameLayout>

</FrameLayout>