input_method.xml revision 59b74dd9b9aa000329ccbaee5bd31c531c1d129d
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/common/res/layout/alert_dialog.xml
4**
5** Copyright 2006, 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<com.android.internal.inputmethod.InputMethodRoot xmlns:android="http://schemas.android.com/apk/res/android"
22    android:id="@+id/parentPanel"
23    android:layout_width="match_parent"
24    android:layout_height="wrap_content"
25    android:orientation="vertical"
26    android:gravity="start|bottom"
27    >
28
29    <LinearLayout
30        android:id="@+id/fullscreenArea"
31        android:layout_width="match_parent"
32        android:layout_height="wrap_content"
33        android:orientation="vertical"
34        >
35
36        <FrameLayout android:id="@android:id/extractArea"
37            android:layout_width="match_parent"
38            android:layout_height="0px"
39            android:layout_weight="1"
40            android:visibility="gone">
41        </FrameLayout>
42        
43        <FrameLayout android:id="@android:id/candidatesArea"
44            android:layout_width="match_parent"
45            android:layout_height="wrap_content"
46            android:visibility="invisible">
47        </FrameLayout>
48
49    </LinearLayout>
50            
51    <FrameLayout android:id="@android:id/inputArea"
52        android:layout_width="match_parent"
53        android:layout_height="wrap_content"
54        android:visibility="gone">
55    </FrameLayout>
56
57    <View android:id="@+id/navigationGuard"
58        android:layout_width="match_parent"
59        android:layout_height="0dp"
60        android:background="@+color/input_method_navigation_guard"/>
61</com.android.internal.inputmethod.InputMethodRoot>
62