30 lines
890 B
XML
30 lines
890 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/widget_background"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingTop="4dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="0dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tvName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="Wake up early"
|
|
android:textColor="@color/white"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:adjustViewBounds="true"
|
|
/>
|
|
|
|
|
|
</LinearLayout> |