• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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<!-- Demonstrates saving and restoring activity state.
18     See corresponding Java code com.android.sdk.app.SaveRestoreState.java. -->
19
20<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21    android:layout_width="match_parent" android:layout_height="match_parent">
22    <LinearLayout android:orientation="vertical" android:padding="4dip"
23        android:layout_width="match_parent" android:layout_height="wrap_content">
24
25        <TextView android:id="@+id/msg"
26            android:layout_width="match_parent" android:layout_height="wrap_content"
27            android:layout_weight="0" android:textAppearance="?android:attr/textAppearanceMedium"
28            android:paddingBottom="4dip" />
29
30        <TextView
31            android:layout_width="match_parent" android:layout_height="wrap_content"
32            android:layout_weight="0" android:paddingBottom="4dip"
33            android:textAppearance="?android:attr/textAppearanceMedium"
34            android:text="@string/saves_state"/>
35
36        <EditText android:id="@+id/saved"
37            android:layout_width="match_parent" android:layout_height="wrap_content"
38            android:layout_weight="1" android:background="@drawable/green"
39            android:textAppearance="?android:attr/textAppearanceMedium"
40            android:text="@string/initial_text"
41            android:freezesText="true">
42        </EditText>
43
44        <TextView
45            android:layout_width="match_parent" android:layout_height="wrap_content"
46            android:layout_weight="0" android:paddingTop="8dip" android:paddingBottom="4dip"
47            android:textAppearance="?android:attr/textAppearanceMedium"
48            android:text="@string/no_saves_state"/>
49
50        <EditText
51            android:layout_width="match_parent" android:layout_height="wrap_content"
52            android:layout_weight="1" android:background="@drawable/red"
53            android:textAppearance="?android:attr/textAppearanceMedium"
54            android:text="@string/initial_text">
55        </EditText>
56
57    </LinearLayout>
58</ScrollView>
59