You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
XML
40 lines
1.2 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="4dp"
|
|
android:theme="@style/Theme.Kotatsu.AppWidgetContainer">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rootLayout"
|
|
android:layout_width="@dimen/widget_cover_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/bg_appwidget_card"
|
|
android:foreground="?android:selectableItemBackground"
|
|
android:orientation="vertical"
|
|
tools:ignore="UnusedAttribute,UselessParent">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_cover"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/widget_cover_height"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elegantTextHeight="false"
|
|
android:ellipsize="end"
|
|
android:lines="2"
|
|
android:paddingHorizontal="4dp"
|
|
android:paddingBottom="4dp"
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |