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:layout_width="match_parent"
     20     android:layout_height="match_parent">
     21 
     22     <FrameLayout
     23         android:id="@+id/timer_view"
     24         android:layout_width="match_parent"
     25         android:layout_height="match_parent">
     26 
     27         <LinearLayout
     28             android:layout_width="match_parent"
     29             android:layout_height="match_parent"
     30             android:orientation="horizontal">
     31 
     32             <LinearLayout
     33                 android:layout_width="0dp"
     34                 android:layout_height="match_parent"
     35                 android:layout_weight="96"
     36                 android:gravity="center_vertical|end"
     37                 android:orientation="vertical">
     38 
     39                 <ImageView
     40                     android:id="@+id/page_indicator0"
     41                     android:layout_width="wrap_content"
     42                     android:layout_height="wrap_content"
     43                     android:contentDescription="@null" />
     44 
     45                 <ImageView
     46                     android:id="@+id/page_indicator1"
     47                     android:layout_width="wrap_content"
     48                     android:layout_height="wrap_content"
     49                     android:contentDescription="@null" />
     50 
     51                 <ImageView
     52                     android:id="@+id/page_indicator2"
     53                     android:layout_width="wrap_content"
     54                     android:layout_height="wrap_content"
     55                     android:contentDescription="@null" />
     56 
     57                 <ImageView
     58                     android:id="@+id/page_indicator3"
     59                     android:layout_width="wrap_content"
     60                     android:layout_height="wrap_content"
     61                     android:contentDescription="@null" />
     62 
     63             </LinearLayout>
     64 
     65             <!-- Right gutter. -->
     66             <Space
     67                 android:layout_width="0dp"
     68                 android:layout_height="match_parent"
     69                 android:layout_weight="@integer/gutter_width_percent" />
     70 
     71         </LinearLayout>
     72 
     73         <com.android.deskclock.VerticalViewPager
     74             android:id="@+id/vertical_view_pager"
     75             android:layout_width="match_parent"
     76             android:layout_height="match_parent" />
     77 
     78     </FrameLayout>
     79 
     80     <com.android.deskclock.timer.TimerSetupView
     81         android:id="@+id/timer_setup"
     82         android:layout_width="match_parent"
     83         android:layout_height="match_parent" />
     84 
     85 </FrameLayout>