summaryrefslogtreecommitdiff
path: root/res/layout-v23
diff options
context:
space:
mode:
authorguanxiongliu <guanxiongliu@google.com>2016-03-17 09:50:54 -0700
committerguanxiongliu <guanxiongliu@google.com>2016-03-17 11:27:20 -0700
commit8d29af00d8628dc9b562ac2c11357af856d491a3 (patch)
treedb0f7db873c7dc54d0116b98c1034d779e19a17f /res/layout-v23
parentf50616b44dbd4e43320278c2d21708047b9daaf9 (diff)
downloadContacts-8d29af00d8628dc9b562ac2c11357af856d491a3.tar.gz
Modifying editor fields layout for RTL
Screenshots b/27484594 #6 Bug:27484594 Change-Id: I79b635e2326ba8a07382a24032a05f3c61ec0d27
Diffstat (limited to 'res/layout-v23')
-rw-r--r--res/layout-v23/edit_date_picker.xml28
-rw-r--r--res/layout-v23/edit_spinner.xml29
-rw-r--r--res/layout-v23/item_group_membership.xml44
3 files changed, 101 insertions, 0 deletions
diff --git a/res/layout-v23/edit_date_picker.xml b/res/layout-v23/edit_date_picker.xml
new file mode 100644
index 000000000..299ccec68
--- /dev/null
+++ b/res/layout-v23/edit_date_picker.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 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.
+ -->
+
+<!-- Button to select a date in the contact editor. -->
+<Button
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/date_view"
+ style="@style/SpinnerButtonStyle"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/editor_min_line_item_height"
+ android:layout_weight="1"
+ android:textSize="@dimen/editor_form_text_size"
+ android:textAlignment="viewStart"
+ android:paddingEnd="@dimen/editor_spinner_right_padding_workaround" /> \ No newline at end of file
diff --git a/res/layout-v23/edit_spinner.xml b/res/layout-v23/edit_spinner.xml
new file mode 100644
index 000000000..0c20ab98c
--- /dev/null
+++ b/res/layout-v23/edit_spinner.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 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.
+ -->
+
+<!-- Spinner for a field in the contact editor. -->
+<Spinner
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/spinner"
+ android:layout_gravity="bottom|start"
+ style="@android:style/Widget.Material.Spinner.Underlined"
+ android:dropDownWidth="@dimen/editor_type_label_dropdown_width"
+ android:layout_width="@dimen/editor_type_label_width"
+ android:layout_height="@dimen/editor_min_line_item_height"
+ android:paddingBottom="0dp"
+ android:paddingTop="0dp"
+ android:paddingEnd="@dimen/editor_spinner_right_padding_workaround"/> \ No newline at end of file
diff --git a/res/layout-v23/item_group_membership.xml b/res/layout-v23/item_group_membership.xml
new file mode 100644
index 000000000..ccf1f7fb5
--- /dev/null
+++ b/res/layout-v23/item_group_membership.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2016 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.contacts.editor.GroupMembershipView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/group_membership_view"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <ImageView
+ android:id="@+id/kind_icon"
+ android:src="@drawable/ic_people_black_24dp"
+ style="@style/EditKindIconStyle" />
+
+ <Button
+ style="@style/SpinnerButtonStyle"
+ android:id="@+id/group_list"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="@dimen/editor_min_line_item_height"
+ android:textSize="@dimen/editor_form_text_size"
+ android:textAlignment="viewStart"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:focusable="true"
+ android:layout_marginEnd="@dimen/editor_delete_button_size"
+ android:layout_marginBottom="@dimen/editor_padding_between_editor_views"
+ android:paddingEnd="@dimen/editor_spinner_right_padding"/>
+
+</com.android.contacts.editor.GroupMembershipView> \ No newline at end of file