| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 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="match_parent" |
| android:orientation="vertical"> |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="horizontal" |
| android:layout_marginTop="16dip"> |
| <QuickContactBadge |
| android:id="@+id/small_badge1" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleWindowSmall" |
| android:layout_marginLeft="4dip" /> |
| <QuickContactBadge |
| android:id="@+id/medium_badge1" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleWindowMedium" |
| android:layout_marginLeft="4dip" /> |
| <QuickContactBadge |
| android:id="@+id/large_badge1" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleWindowLarge" |
| android:layout_marginLeft="4dip" /> |
| </LinearLayout> |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="0px" |
| android:layout_weight="1" /> |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="horizontal"> |
| <Button |
| android:id="@+id/pick_contact" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:padding="32dip" |
| android:text="@string/pickContact" /> |
| <TextView |
| android:id="@+id/uri" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:padding="32dip" /> |
| </LinearLayout> |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="0px" |
| android:layout_weight="1" /> |
| <LinearLayout |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="horizontal" |
| android:layout_marginBottom="16dip"> |
| <QuickContactBadge |
| android:id="@+id/small_badge2" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleSmallWindowSmall" |
| android:layout_marginLeft="4dip" /> |
| <QuickContactBadge |
| android:id="@+id/medium_badge2" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleSmallWindowMedium" |
| android:layout_marginLeft="4dip" /> |
| <QuickContactBadge |
| android:id="@+id/large_badge2" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| style="?android:attr/quickContactBadgeStyleSmallWindowLarge" |
| android:layout_marginLeft="4dip" /> |
| </LinearLayout> |
| <Button |
| android:id="@android:id/button1" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:text="@string/quickContactIntent" |
| android:enabled="false"/> |
| </LinearLayout> |
| |