Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /* 
      4 **
      5 ** Copyright 2008, The Android Open Source Project
      6 **
      7 ** Licensed under the Apache License, Version 2.0 (the "License"); 
      8 ** you may not use this file except in compliance with the License. 
      9 ** You may obtain a copy of the License at 
     10 **
     11 **     http://www.apache.org/licenses/LICENSE-2.0 
     12 **
     13 ** Unless required by applicable law or agreed to in writing, software 
     14 ** distributed under the License is distributed on an "AS IS" BASIS, 
     15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     16 ** See the License for the specific language governing permissions and 
     17 ** limitations under the License.
     18 */
     19 -->
     20 
     21 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     22     android:layout_width="wrap_content"
     23     android:layout_height="wrap_content"
     24     android:padding="8dip"
     25     android:orientation="vertical">
     26     
     27     <TextView
     28       android:id="@+id/state"
     29       android:textSize="12pt"
     30       android:layout_width="wrap_content"
     31       android:layout_height="wrap_content" 
     32       android:text="@string/initializing" />
     33 
     34     <TextView
     35       android:id="@+id/substate"
     36       android:layout_width="wrap_content"
     37       android:layout_height="wrap_content" />
     38       
     39     <LinearLayout 
     40       android:layout_width="wrap_content"
     41       android:layout_height="wrap_content"
     42       android:orientation="horizontal">
     43 
     44       <FrameLayout
     45         android:layout_width="wrap_content"
     46         android:layout_height="wrap_content">
     47  
     48         <ImageView
     49           android:id="@+id/microphone_view"
     50           android:src="@drawable/ic_vd_mic_on"
     51           android:layout_width="wrap_content" 
     52           android:layout_height="wrap_content"
     53           />
     54             
     55         <ImageView
     56           android:id="@+id/microphone_loading_view"
     57           android:src="@drawable/ic_vd_mic_off"
     58           android:layout_width="wrap_content" 
     59           android:layout_height="wrap_content"
     60           />
     61                         
     62         <ImageView
     63           android:id="@+id/retry_view"
     64           android:src="@drawable/ic_vd_retry"
     65           android:layout_width="wrap_content" 
     66           android:layout_height="wrap_content"
     67           />
     68             
     69       </FrameLayout>
     70     
     71       <TextView
     72             android:layout_width="wrap_content"
     73             android:layout_height="wrap_content" 
     74             android:text="@string/examples" />
     75             
     76     </LinearLayout>
     77 
     78 </LinearLayout>
     79