112 lines
No EOL
4.2 KiB
XML
112 lines
No EOL
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2009 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.
|
|
-->
|
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
app:elevation="0dp">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:contentInsetLeft="0dp"
|
|
app:contentInsetStart="0dp">
|
|
|
|
<android.support.design.widget.TabLayout
|
|
android:id="@+id/sliding_tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:tabGravity="fill"
|
|
app:tabIndicatorColor="@android:color/transparent"
|
|
app:tabMode="fixed" />
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<com.android.deskclock.widget.RtlViewPager
|
|
android:id="@+id/desk_clock_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal"
|
|
app:layout_behavior="com.android.deskclock.widget.toast.LinearLayoutWithSnackbarBehavior">
|
|
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start|center_vertical"
|
|
android:layout_weight="1">
|
|
|
|
<ImageButton
|
|
android:id="@+id/left_button"
|
|
android:layout_width="@dimen/design_fab_size_normal"
|
|
android:layout_height="@dimen/design_fab_size_normal"
|
|
android:layout_gravity="center"
|
|
android:contentDescription="@null"
|
|
android:scaleType="center" />
|
|
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="@dimen/fab_margin"
|
|
app:borderWidth="0dp"
|
|
app:elevation="@dimen/fab_elevation" />
|
|
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="end|center_vertical"
|
|
android:layout_weight="1">
|
|
|
|
<ImageButton
|
|
android:id="@+id/right_button"
|
|
android:layout_width="@dimen/design_fab_size_normal"
|
|
android:layout_height="@dimen/design_fab_size_normal"
|
|
android:layout_gravity="center"
|
|
android:contentDescription="@null"
|
|
android:scaleType="center" />
|
|
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</android.support.design.widget.CoordinatorLayout> |