diff options
author | 2010-09-01 15:45:20 +0900 | |
---|---|---|
committer | 2010-09-01 16:18:01 +0900 | |
commit | 31adfa78e2edae188edb05e869f9f68798857582 (patch) | |
tree | eedd535eefc4ec51d773f90c41bffe454bb7adff /java/res/layout | |
parent | c7c6203f330883235c8cb4f1c84013cdb28a8b12 (diff) | |
download | latinime-31adfa78e2edae188edb05e869f9f68798857582.tar.gz latinime-31adfa78e2edae188edb05e869f9f68798857582.tar.xz latinime-31adfa78e2edae188edb05e869f9f68798857582.zip |
Add a new theme for Gingerbread
bug: 2959293
Change-Id: I8aef19a7485ffd5639a177aee21103b3a1e04cf2
Diffstat (limited to 'java/res/layout')
-rwxr-xr-x | java/res/layout/input_gingerbread.xml | 33 | ||||
-rwxr-xr-x | java/res/layout/input_gingerbread_popup.xml | 48 |
2 files changed, 81 insertions, 0 deletions
diff --git a/java/res/layout/input_gingerbread.xml b/java/res/layout/input_gingerbread.xml new file mode 100755 index 000000000..8f59cae21 --- /dev/null +++ b/java/res/layout/input_gingerbread.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2010, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<com.android.inputmethod.latin.LatinKeyboardView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" + android:id="@+id/LatinkeyboardBaseView" + android:layout_alignParentBottom="true" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@drawable/keyboard_dark_background" + android:textStyle="bold" + + latin:keyBackground="@drawable/btn_keyboard_key_gingerbread" + latin:keyTextStyle="bold" + /> diff --git a/java/res/layout/input_gingerbread_popup.xml b/java/res/layout/input_gingerbread_popup.xml new file mode 100755 index 000000000..0f0f080b5 --- /dev/null +++ b/java/res/layout/input_gingerbread_popup.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2010, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:background="@drawable/keyboard_popup_panel_background" + > + <com.android.inputmethod.latin.LatinKeyboardBaseView + xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" + android:id="@+id/LatinKeyboardBaseView" + android:layout_alignParentBottom="true" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@drawable/keyboard_dark_background" + + latin:keyBackground="@drawable/btn_keyboard_key_gingerbread" + latin:popupLayout="@layout/input_gingerbread_popup" + /> + <ImageButton android:id="@+id/closeButton" + android:background="@android:color/transparent" + android:src="@drawable/btn_close" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:layout_marginLeft="8dp" + android:clickable="true" + /> +</LinearLayout> |