2018-12-16 15:48:44 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-14 22:30:06 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-16 18:02:13 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-12-16 15:48:44 +01:00
|
|
|
android:id="@+id/widget_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2022-05-14 22:30:06 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/widget_background"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:src="@drawable/widget_round_background" />
|
|
|
|
|
2018-12-16 15:48:44 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/widget_imageview"
|
|
|
|
android:layout_width="match_parent"
|
2018-12-17 10:29:25 +01:00
|
|
|
android:layout_height="match_parent"
|
2018-12-16 21:10:06 +01:00
|
|
|
android:layout_above="@+id/widget_folder_name"
|
2018-12-17 10:29:25 +01:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:paddingLeft="@dimen/tiny_margin"
|
2022-05-14 22:30:06 +02:00
|
|
|
android:paddingTop="@dimen/small_margin"
|
2018-12-17 10:29:25 +01:00
|
|
|
android:paddingRight="@dimen/tiny_margin"
|
2022-05-14 22:30:06 +02:00
|
|
|
android:paddingBottom="@dimen/small_margin"
|
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2018-12-16 15:48:44 +01:00
|
|
|
|
2018-12-16 20:05:44 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/widget_folder_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-16 21:10:06 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
2018-12-16 20:05:44 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
2022-05-14 22:30:06 +02:00
|
|
|
android:includeFontPadding="false"
|
2018-12-16 20:05:44 +01:00
|
|
|
android:lines="1"
|
|
|
|
android:padding="@dimen/tiny_margin"
|
|
|
|
android:textSize="@dimen/bigger_text_size"
|
2022-05-14 22:30:06 +02:00
|
|
|
tools:text="@string/internal" />
|
2018-12-16 20:05:44 +01:00
|
|
|
|
2018-12-16 15:48:44 +01:00
|
|
|
</RelativeLayout>
|