61 lines
2.2 KiB
XML
61 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="140dp"
|
|
android:layout_height="147dp"
|
|
android:focusable="true"
|
|
android:gravity="center"
|
|
android:background="@drawable/app_info_bg"
|
|
android:clipChildren="true"
|
|
android:clipToPadding="true"
|
|
android:focusableInTouchMode="true"
|
|
tools:ignore="MissingDefaultResource">
|
|
<RelativeLayout
|
|
android:id="@+id/item_bg"
|
|
android:clipChildren="false"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_app"
|
|
android:layout_width="72dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="27dp"
|
|
android:layout_height="72dp">
|
|
</ImageView>
|
|
<ImageView
|
|
android:id="@+id/img_add"
|
|
android:layout_width="43dp"
|
|
android:src="@drawable/item_add_img"
|
|
android:layout_marginTop="43dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_height="43dp">
|
|
</ImageView>
|
|
<TextView
|
|
android:id="@+id/item_name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="9dp"
|
|
android:paddingEnd="9dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
android:includeFontPadding="false"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:ellipsize="marquee"
|
|
android:textSize="21sp"
|
|
android:layout_marginVertical="10dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:textColor="@color/item_text_color"
|
|
/>
|
|
</RelativeLayout>
|
|
<ImageView
|
|
android:layout_height="24dp"
|
|
android:id="@+id/item_sel"
|
|
android:layout_width="24dp"
|
|
android:layout_marginEnd="6dp"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_alignParentEnd="true">
|
|
</ImageView>
|
|
</RelativeLayout>
|