mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-13 13:39:26 +01:00
29 lines
918 B
XML
29 lines
918 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center_vertical"
|
||
|
android:padding="5dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:scaleType="fitXY"
|
||
|
android:layout_alignParentStart="true"
|
||
|
android:id="@+id/packageIcon"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/packageName"
|
||
|
android:textSize="20dp"
|
||
|
android:layout_centerInParent="true"/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:scaleType="fitXY"
|
||
|
android:id="@+id/packageClock"
|
||
|
android:layout_alignParentEnd="true"/>
|
||
|
|
||
|
</RelativeLayout>
|