2011-06-14 07:28:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
/*
|
|
|
|
**
|
|
|
|
** Copyright 2011, 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.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
|
|
|
|
<merge
|
2014-01-08 07:52:04 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2011-09-05 07:15:28 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/suggestions_strip"
|
|
|
|
android:orientation="horizontal"
|
2011-06-27 07:57:18 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-09-05 07:15:28 +00:00
|
|
|
android:layout_height="match_parent" />
|
2014-01-27 05:50:02 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/add_to_dictionary_strip"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="invisible">
|
2014-01-28 10:22:27 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/word_to_save"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
style="?attr/suggestionWordStyle" />
|
2014-01-27 05:50:02 +00:00
|
|
|
<include
|
|
|
|
layout="@layout/suggestion_divider" />
|
2014-01-28 10:22:27 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/hint_add_to_dictionary"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-01-30 07:52:29 +00:00
|
|
|
android:textAlignment="viewStart"
|
2014-01-28 10:22:27 +00:00
|
|
|
style="?attr/suggestionWordStyle" />
|
2014-01-27 05:50:02 +00:00
|
|
|
</LinearLayout>
|
2014-01-28 07:19:29 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/important_notice_strip"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/important_notice_title"
|
2014-02-03 06:08:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-01-28 07:19:29 +00:00
|
|
|
android:layout_height="match_parent"
|
2014-02-17 02:28:48 +00:00
|
|
|
android:padding="6sp"
|
2014-02-14 10:10:47 +00:00
|
|
|
android:textSize="16sp"
|
2014-01-28 07:19:29 +00:00
|
|
|
style="?attr/suggestionWordStyle" />
|
|
|
|
</LinearLayout>
|
2011-06-14 07:28:57 +00:00
|
|
|
</merge>
|