xesite_android/app/src/main/res/layout/current_post_widget.xml

37 lines
1.4 KiB
XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/appWidgetBackgroundColor"
android:padding="@dimen/widget_margin"
android:theme="@style/ThemeOverlay.Xesite_android.AppWidgetContainer">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView"
android:layout_width="92dp"
android:layout_height="wrap_content"
android:src="@drawable/splash" />
<TextView
android:id="@+id/appwidget_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="?attr/appWidgetBackgroundColor"
android:contentDescription="@string/appwidget_text"
android:text="@string/appwidget_text"
android:textColor="?attr/appWidgetTextColor"
android:textSize="24sp"
android:textStyle="bold|italic" />
</LinearLayout>
</RelativeLayout>