mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-11 13:07:45 +01:00
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout android:id="@+id/nnf_item_container"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:listPreferredItemHeight"
|
|
android:background="?selectableItemBackground"
|
|
android:focusable="true"
|
|
android:minHeight="?android:listPreferredItemHeight"
|
|
android:nextFocusLeft="@+id/nnf_button_cancel"
|
|
android:nextFocusRight="@+id/nnf_button_ok"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/item_icon"
|
|
android:layout_width="?android:listPreferredItemHeight"
|
|
android:layout_height="?android:listPreferredItemHeight"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="center"
|
|
android:src="@drawable/nnf_ic_file_folder"
|
|
android:tint="?attr/colorAccent"
|
|
android:visibility="visible"
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
<TextView
|
|
android:id="@android:id/text1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:maxLines="1"
|
|
android:padding="8dp"
|
|
android:singleLine="true"
|
|
android:text="@string/nnf_name"/>
|
|
</LinearLayout> |