Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 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 <FrameLayout
     18     xmlns:android="http://schemas.android.com/apk/res/android"
     19     android:id="@+id/timers_list_page"
     20     android:layout_width="match_parent"
     21     android:layout_height="match_parent">
     22 
     23     <FrameLayout
     24         android:id="@+id/timer_view"
     25         android:layout_width="match_parent"
     26         android:layout_height="match_parent">
     27 
     28         <LinearLayout
     29             android:id="@+id/page_indicators"
     30             android:layout_width="wrap_content"
     31             android:layout_height="match_parent"
     32             android:layout_gravity="end|center_vertical"
     33             android:layout_marginEnd="24dp"
     34             android:gravity="center"
     35             android:orientation="vertical">
     36 
     37             <ImageView
     38                 android:id="@+id/page_indicator0"
     39                 android:layout_width="wrap_content"
     40                 android:layout_height="wrap_content"
     41                 android:contentDescription="@null"/>
     42 
     43             <ImageView
     44                 android:id="@+id/page_indicator1"
     45                 android:layout_width="wrap_content"
     46                 android:layout_height="wrap_content"
     47                 android:contentDescription="@null"/>
     48 
     49             <ImageView
     50                 android:id="@+id/page_indicator2"
     51                 android:layout_width="wrap_content"
     52                 android:layout_height="wrap_content"
     53                 android:contentDescription="@null"/>
     54 
     55             <ImageView
     56                 android:id="@+id/page_indicator3"
     57                 android:layout_width="wrap_content"
     58                 android:layout_height="wrap_content"
     59                 android:contentDescription="@null"/>
     60 
     61             <Space
     62                 android:layout_width="match_parent"
     63                 android:layout_height="@dimen/footer_button_size"
     64                 android:layout_marginBottom="16dp"
     65                 android:layout_marginTop="16dp"/>
     66 
     67         </LinearLayout>
     68 
     69         <com.android.deskclock.VerticalViewPager
     70             android:id="@+id/vertical_view_pager"
     71             android:layout_width="match_parent"
     72             android:layout_height="match_parent"/>
     73 
     74     </FrameLayout>
     75 
     76     <com.android.deskclock.timer.TimerSetupView
     77         android:id="@+id/timer_setup"
     78         android:layout_width="match_parent"
     79         android:layout_height="match_parent"
     80         android:layout_margin="16dp"/>
     81 
     82 </FrameLayout>