2010-07-21 21:29:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-05-09 21:31:11 +00:00
|
|
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
2010-07-21 21:29:49 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
2010-12-07 23:17:52 +00:00
|
|
|
<LinearLayout
|
2010-07-21 21:29:49 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2010-09-24 00:10:46 +00:00
|
|
|
android:layout_height="match_parent"
|
2010-12-07 23:17:52 +00:00
|
|
|
android:orientation="vertical"
|
2010-09-24 00:10:46 +00:00
|
|
|
>
|
2010-11-29 19:42:13 +00:00
|
|
|
|
|
|
|
<!-- Error message goes over the normal view -->
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/error_message"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/error_message_height"
|
|
|
|
android:paddingLeft="78dip"
|
|
|
|
android:paddingRight="78dip"
|
|
|
|
android:gravity="left|center_vertical"
|
|
|
|
android:textSize="16dip"
|
|
|
|
android:textColor="#000"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:background="#ffff66"
|
|
|
|
/>
|
2011-05-09 21:31:11 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_placeholder"
|
2010-12-07 23:17:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-05-11 18:38:54 +00:00
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
2010-12-07 23:17:52 +00:00
|
|
|
</LinearLayout>
|