36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/widget_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToOutline="true"
|
|
android:outlineProvider="background"
|
|
android:theme="@style/Theme.Kotatsu.AppWidgetContainer"
|
|
tools:background="?android:attr/colorBackground">
|
|
|
|
<GridView
|
|
android:id="@+id/gridView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:columnWidth="92dp"
|
|
android:gravity="center_horizontal"
|
|
android:numColumns="auto_fit"
|
|
android:orientation="horizontal"
|
|
android:padding="4dp"
|
|
android:scrollbarStyle="insideOverlay"
|
|
tools:listitem="@layout/item_shelf" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_holder"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:text="@string/you_have_not_favourites_yet"
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
</FrameLayout>
|