mirror of https://github.com/Corewala/Buran
20 lines
719 B
XML
20 lines
719 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:id="@+id/history_row"
|
|
android:minHeight="60dp"
|
|
android:layout_height="60dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/history_address"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:textColor="@color/stroke"
|
|
android:paddingStart="@dimen/default_margin" />
|
|
|
|
</RelativeLayout> |