Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2011 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <!--
     18   Layout of "organization" field in contact editor which either shows the "add
     19   organization" button or a container (which should be populated with the actual
     20   list of edit text fields).
     21 -->
     22 
     23 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
     24     android:layout_width="match_parent"
     25     android:layout_height="wrap_content"
     26     android:minHeight="40dip"
     27     android:background="?android:attr/selectableItemBackground">
     28 
     29     <TextView
     30         android:id="@+id/add_organization_button"
     31         android:layout_width="match_parent"
     32         android:layout_height="wrap_content"
     33         android:paddingLeft="@dimen/editor_add_field_label_left_padding"
     34         android:paddingRight="16dip"
     35         android:layout_gravity="center_vertical"
     36         android:duplicateParentState="true"
     37         android:textAppearance="?android:attr/textAppearanceMedium"
     38         android:textColor="?android:attr/textColorSecondary"
     39         android:text="@string/add_organization"/>
     40 
     41     <!-- This is later populated with the actual editable text fields for "organization" -->
     42     <FrameLayout
     43         android:id="@+id/container"
     44         android:layout_width="match_parent"
     45         android:layout_height="wrap_content"
     46         android:visibility="gone"/>
     47 
     48 </FrameLayout>