mirror of
https://github.com/He4eT/yamf_launcher.git
synced 2026-05-04 17:37:25 +00:00
26 lines
No EOL
899 B
XML
26 lines
No EOL
899 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- res/layout/widget_item.xml -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/widget_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="100dp"
|
|
android:layout_gravity="center"
|
|
android:contentDescription=""
|
|
android:paddingBottom="10dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/widget_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingBottom="20dp"
|
|
android:textAlignment="center"
|
|
android:textAllCaps="false"
|
|
android:textSize="16sp" />
|
|
</LinearLayout> |