mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 22:38:57 +00:00
52 lines
1.7 KiB
XML
52 lines
1.7 KiB
XML
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:paddingLeft="50dp"
|
|
android:paddingRight="50dp">
|
|
|
|
<!-- Empty spacer view -->
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/empty_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:gravity="top|center"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dip"
|
|
android:orientation="vertical"
|
|
android:layout_weight="3">
|
|
|
|
<TextView
|
|
android:id="@+id/empty_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
style="@style/TextAppearance.EmptyView.Title"
|
|
android:gravity="center"/>
|
|
|
|
<TextView
|
|
android:id="@+id/empty_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
style="@style/TextAppearance.EmptyView.Message"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|