39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/remoteviewLinearLayout1" android:background="@drawable/bg_container_border">
|
|
|
|
<ImageView
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:id="@+id/remoteviewImageView1"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical" android:background="@drawable/bg_container_border">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Text"
|
|
android:textSize="16sp"
|
|
android:id="@+id/remoteviewTextView1"
|
|
android:textStyle="bold"/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Text"
|
|
android:textSize="14sp"
|
|
android:id="@+id/remoteviewTextView2"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|