<?xml version="1.0" encoding="utf-8"?>
|
<!-- Copyright (C) 2009 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.internal.widget.WeightedLinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/parentPanel"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:paddingTop="9dip"
|
android:paddingBottom="3dip"
|
android:paddingStart="3dip"
|
android:paddingEnd="1dip"
|
android:majorWeightMin="0.45"
|
android:minorWeightMin="0.72"
|
android:majorWeightMax="0.45"
|
android:minorWeightMax="0.72">
|
|
<LinearLayout android:id="@+id/topPanel"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<LinearLayout android:id="@+id/title_template"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:gravity="center_vertical|start"
|
android:minHeight="60dip"
|
android:layout_marginStart="32dip"
|
android:layout_marginEnd="32dip">
|
<ImageView android:id="@+id/icon"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingEnd="16dip"
|
android:src="@null"
|
android:visibility="gone" />
|
<com.android.internal.widget.DialogTitle android:id="@+id/alertTitle"
|
style="?android:attr/textAppearanceMedium"
|
android:singleLine="true"
|
android:ellipsize="end"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textAlignment="viewStart" />
|
</LinearLayout>
|
<View android:id="@+id/titleDivider"
|
android:layout_width="match_parent"
|
android:layout_height="2dip"
|
android:background="@android:color/holo_blue_light" />
|
<!-- If the client uses a customTitle, it will be added here. -->
|
</LinearLayout>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="0dip"
|
android:layout_weight="1">
|
|
<ListView
|
android:id="@android:id/list"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
/>
|
|
<TextView
|
android:id="@android:id/empty"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:text="@string/activity_list_empty"
|
android:visibility="gone"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
/>
|
</FrameLayout>
|
|
<LinearLayout android:id="@+id/buttonPanel"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:minHeight="54dip"
|
android:orientation="vertical"
|
android:divider="?android:attr/dividerHorizontal"
|
android:showDividers="beginning">
|
<LinearLayout
|
style="?android:attr/buttonBarStyle"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:measureWithLargestChild="true">
|
<LinearLayout android:id="@+id/leftSpacer"
|
android:layout_weight="0.25"
|
android:layout_width="0dip"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:visibility="gone" />
|
<Button android:id="@+id/button1"
|
android:layout_width="0dip"
|
android:layout_gravity="start"
|
android:layout_weight="1"
|
android:maxLines="2"
|
android:text="@string/cancel"
|
style="?android:attr/buttonBarButtonStyle"
|
android:layout_height="wrap_content" />
|
<LinearLayout android:id="@+id/rightSpacer"
|
android:layout_width="0dip"
|
android:layout_weight="0.25"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:visibility="gone" />
|
</LinearLayout>
|
</LinearLayout>
|
</com.android.internal.widget.WeightedLinearLayout>
|