blob: 78217b01a207c30ff2bb553607a0b9e0516daff7 [file] [log] [blame]
satoka0f87392010-05-14 22:20:13 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
Tadashi G. Takaoka13a74192011-05-24 21:08:20 +09005** Copyright 2011, The Android Open Source Project
satoka0f87392010-05-14 22:20:13 +09006**
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
Tadashi G. Takaokaf451ed22011-09-20 16:16:34 +090021<com.android.inputmethod.latin.InputView
Tadashi G. Takaokac150acc2011-05-23 18:30:21 +090022 xmlns:android="http://schemas.android.com/apk/res/android"
Tadashi G. Takaokac150acc2011-05-23 18:30:21 +090023 android:orientation="vertical"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
Tadashi G. Takaoka2dfcfc52013-08-08 16:13:17 +090026 android:gravity="bottom|center_horizontal"
Tadashi G. Takaokac150acc2011-05-23 18:30:21 +090027>
Tadashi G. Takaoka52d220e2013-08-06 10:48:39 +090028 <!-- To ensure that key preview popup is correctly placed when the current system locale is
29 one of RTL locales, layoutDirection="ltr" is needed in the SDK version 17+. -->
30 <com.android.inputmethod.latin.suggestions.SuggestionStripView
31 android:id="@+id/suggestion_strip_view"
32 android:layoutDirection="ltr"
satoka0f87392010-05-14 22:20:13 +090033 android:layout_width="match_parent"
Tadashi G. Takaoka52d220e2013-08-06 10:48:39 +090034 android:layout_height="@dimen/suggestions_strip_height"
Tadashi G. Takaoka52d220e2013-08-06 10:48:39 +090035 android:paddingRight="@dimen/suggestions_strip_padding"
36 android:paddingLeft="@dimen/suggestions_strip_padding"
37 style="?attr/suggestionStripViewStyle" />
Tadashi G. Takaokada348e12013-02-15 13:09:32 +090038 <!-- To ensure that key preview popup is correctly placed when the current system locale is
39 one of RTL locales, layoutDirection="ltr" is needed in the SDK version 17+. -->
Tadashi G. Takaokac8e45dd2012-07-23 10:27:14 +090040 <com.android.inputmethod.keyboard.MainKeyboardView
Tadashi G. Takaoka070760d2011-06-13 14:46:37 +090041 android:id="@+id/keyboard_view"
Tadashi G. Takaokada348e12013-02-15 13:09:32 +090042 android:layoutDirection="ltr"
Tadashi G. Takaoka2dfcfc52013-08-08 16:13:17 +090043 android:layout_width="wrap_content"
Tadashi G. Takaoka070760d2011-06-13 14:46:37 +090044 android:layout_height="wrap_content" />
Tadashi G. Takaokaf451ed22011-09-20 16:16:34 +090045</com.android.inputmethod.latin.InputView>