Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2017 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent"
     20     android:orientation="vertical">
     21   <TextView
     22       android:layout_width="match_parent"
     23       android:layout_height="wrap_content"
     24       android:text="@string/dialer_incoming_call_test"/>
     25 
     26   <LinearLayout
     27       android:layout_width="wrap_content"
     28       android:layout_height="wrap_content"
     29       android:layout_marginTop="@dimen/js_padding"
     30       android:layout_marginBottom="@dimen/js_padding">
     31     <ImageView
     32         android:id="@+id/set_default_dialer_image"
     33         android:layout_width="wrap_content"
     34         android:layout_height="wrap_content"
     35         android:layout_marginRight="@dimen/js_padding"
     36         android:src="@drawable/fs_indeterminate"/>
     37     <TextView
     38         android:layout_width="wrap_content"
     39         android:layout_height="wrap_content"
     40         android:text="@string/dialer_incoming_call_test_instructions"
     41         android:textSize="16dp"/>
     42   </LinearLayout>
     43 
     44   <Button
     45       android:id="@+id/set_default_dialer"
     46       android:layout_width="wrap_content"
     47       android:layout_height="wrap_content"
     48       android:text="@string/voicemail_set_default_dialer_button"/>
     49 
     50   <LinearLayout
     51       android:layout_width="wrap_content"
     52       android:layout_height="wrap_content"
     53       android:layout_marginTop="@dimen/js_padding"
     54       android:layout_marginBottom="@dimen/js_padding">
     55     <ImageView
     56         android:id="@+id/dialer_incoming_call_status"
     57         android:layout_width="wrap_content"
     58         android:layout_height="wrap_content"
     59         android:layout_marginRight="@dimen/js_padding"
     60         android:src="@drawable/fs_indeterminate"/>
     61     <TextView
     62         android:id="@+id/dialer_check_incoming_call_explanation"
     63         android:layout_width="wrap_content"
     64         android:layout_height="wrap_content"
     65         android:text="@string/dialer_check_incoming_call_explanation"
     66         android:textSize="16dp"/>
     67   </LinearLayout>
     68 
     69   <LinearLayout
     70       android:layout_width="wrap_content"
     71       android:layout_height="wrap_content"
     72       android:layout_marginTop="@dimen/js_padding"
     73       android:layout_marginBottom="@dimen/js_padding">
     74     <ImageView
     75         android:id="@+id/restore_default_dialer_image"
     76         android:layout_width="wrap_content"
     77         android:layout_height="wrap_content"
     78         android:layout_marginRight="@dimen/js_padding"
     79         android:src="@drawable/fs_indeterminate"/>
     80     <TextView
     81         android:id="@+id/restore_default_dialer_text"
     82         android:layout_width="wrap_content"
     83         android:layout_height="wrap_content"
     84         android:text="@string/voicemail_restore_default_dialer_description"
     85         android:textSize="16dp"/>
     86   </LinearLayout>
     87 
     88   <Button
     89       android:id="@+id/restore_default_dialer"
     90       android:layout_width="wrap_content"
     91       android:layout_height="wrap_content"
     92       android:text="@string/voicemail_restore_default_dialer_button"/>
     93 
     94   <include layout="@layout/pass_fail_buttons"/>
     95 </LinearLayout>