blob: 07d1cd8eddc1e9b2cc02cfdb43e8863e90b6f5a8 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 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.
-->
<!--
Layout of "organization" field in contact editor which either shows the "add
organization" button or a container (which should be populated with the actual
list of edit text fields).
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/add_organization_button"
android:layout_width="match_parent"
android:layout_height="48dip"
android:paddingLeft="@dimen/editor_add_field_label_left_padding"
android:paddingRight="16dip"
android:paddingStart="@dimen/editor_add_field_label_left_padding"
android:paddingEnd="16dip"
android:gravity="center_vertical"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondary"
android:background="?android:attr/selectableItemBackground"
android:text="@string/add_organization"
android:focusable="true"
android:clickable="true"/>
<!-- This is later populated with the actual editable text fields for "organization" -->
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"/>
</FrameLayout>