Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?><!--
      2   ~ Copyright 2017 Google Inc.
      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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     17     android:layout_width="match_parent"
     18     android:layout_height="match_parent"
     19     android:layout_marginBottom="27dp"
     20     android:layout_marginLeft="48dp"
     21     android:layout_marginRight="48dp"
     22     android:layout_marginTop="27dp"
     23     android:orientation="vertical">
     24 
     25     <TextView
     26         android:layout_width="wrap_content"
     27         android:layout_height="wrap_content"
     28         android:text="@string/button_instructions" />
     29 
     30     <LinearLayout
     31         android:layout_width="match_parent"
     32         android:layout_height="wrap_content"
     33         android:orientation="vertical">
     34 
     35         <LinearLayout
     36             android:layout_width="match_parent"
     37             android:layout_height="wrap_content"
     38             android:paddingTop="27dp"
     39             android:paddingBottom="27dp">
     40 
     41             <LinearLayout
     42                 android:layout_width="wrap_content"
     43                 android:layout_height="wrap_content"
     44                 android:orientation="vertical">
     45 
     46                 <TextView
     47                     android:layout_width="wrap_content"
     48                     android:layout_height="wrap_content"
     49                     android:text="@string/tv_shows"
     50                     android:textAppearance="?android:attr/textAppearanceMedium" />
     51 
     52                 <Button
     53                     android:id="@+id/subscribe_tv_button"
     54                     android:layout_width="wrap_content"
     55                     android:layout_height="wrap_content"
     56                     android:text="@string/subscribe" />
     57 
     58             </LinearLayout>
     59 
     60             <TextView
     61                 android:layout_width="wrap_content"
     62                 android:layout_height="wrap_content"
     63                 android:layout_gravity="center_vertical"
     64                 android:paddingStart="27dp"
     65                 android:text="@string/implement_movie_presenter_here"
     66                 android:textAppearance="?android:attr/textAppearanceMedium" />
     67 
     68         </LinearLayout>
     69 
     70         <LinearLayout
     71             android:layout_width="match_parent"
     72             android:layout_height="wrap_content"
     73             android:paddingBottom="27dp">
     74 
     75             <LinearLayout
     76                 android:layout_width="wrap_content"
     77                 android:layout_height="wrap_content"
     78                 android:orientation="vertical">
     79 
     80                 <TextView
     81                     android:layout_width="wrap_content"
     82                     android:layout_height="wrap_content"
     83                     android:text="@string/video_clips"
     84                     android:textAppearance="?android:attr/textAppearanceMedium" />
     85 
     86                 <Button
     87                     android:id="@+id/subscribe_video_button"
     88                     android:layout_width="wrap_content"
     89                     android:layout_height="wrap_content"
     90                     android:text="@string/subscribe" />
     91 
     92             </LinearLayout>
     93 
     94             <TextView
     95                 android:layout_width="wrap_content"
     96                 android:layout_height="wrap_content"
     97                 android:layout_gravity="center_vertical"
     98                 android:paddingStart="27dp"
     99                 android:text="@string/implement_movie_presenter_here"
    100                 android:textAppearance="?android:attr/textAppearanceMedium" />
    101 
    102         </LinearLayout>
    103 
    104         <LinearLayout
    105             android:layout_width="match_parent"
    106             android:layout_height="wrap_content"
    107             android:paddingBottom="27dp">
    108 
    109             <LinearLayout
    110                 android:layout_width="wrap_content"
    111                 android:layout_height="wrap_content"
    112                 android:orientation="vertical">
    113 
    114                 <TextView
    115                     android:layout_width="wrap_content"
    116                     android:layout_height="wrap_content"
    117                     android:text="@string/cat_videos"
    118                     android:textAppearance="?android:attr/textAppearanceMedium" />
    119 
    120                 <Button
    121                     android:id="@+id/subscribe_cat_videos_button"
    122                     android:layout_width="wrap_content"
    123                     android:layout_height="wrap_content"
    124                     android:text="@string/subscribe" />
    125 
    126             </LinearLayout>
    127 
    128             <TextView
    129                 android:layout_width="wrap_content"
    130                 android:layout_height="wrap_content"
    131                 android:layout_gravity="center_vertical"
    132                 android:paddingStart="27dp"
    133                 android:text="@string/implement_movie_presenter_here"
    134                 android:textAppearance="?android:attr/textAppearanceMedium" />
    135 
    136         </LinearLayout>
    137 
    138     </LinearLayout>
    139 </LinearLayout>