blob: 390c46764c344fee4bbf59a40575bbf9e4c7eb5d [file] [log] [blame]
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent" android:layout_height="match_parent">
19 <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"
20 android:layout_centerHorizontal="true" android:layout_alignParentTop="true"
21 android:src="@drawable/bugdroid" android:scaleType="center" />
22
23 <Button android:id="@+id/close"
24 android:layout_width="wrap_content" android:layout_height="wrap_content"
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -070025 android:layout_alignParentTop="true" android:layout_alignParentEnd="true"
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -070026 android:text="@string/close_universe" />
27
28 <TextView android:id="@+id/title"
29 android:layout_width="match_parent" android:layout_height="wrap_content"
30 android:layout_below="@id/close" android:layout_centerHorizontal="true"
31 android:paddingBottom="16dp"
32 android:textAppearance="?android:attr/textAppearanceLarge"
33 android:gravity="center" />
34
35 <ImageView android:id="@+id/bottom"
36 android:layout_width="wrap_content" android:layout_height="wrap_content"
37 android:layout_below="@id/title" android:layout_centerHorizontal="true"
38 android:layout_marginTop="16dp" />
39</RelativeLayout>