neues listview layout hinzugefügt

This commit is contained in:
m_broelemann 2021-01-01 18:49:31 +01:00
parent ec6e684cd9
commit 4bb23dd51b

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="75dp"
android:orientation="vertical">
<ImageView
android:id="@+id/images"
android:layout_width="71dp"
android:layout_height="71dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_margin="2dp"
android:layout_toRightOf="@id/images"
tools:srcCompat="@drawable/off_signal" />
<TextView
android:id="@+id/textPin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/images"
android:layout_centerVertical="true"
android:text="TextView"
android:textSize="22dp"
android:layout_margin="2dp"
android:singleLine="true"/>
</RelativeLayout>