60 lines
2.2 KiB
XML
60 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="105dp"
|
|
android:layout_height="110dp"
|
|
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="54dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_height="54dp"/>
|
|
<ImageView
|
|
android:id="@+id/img_add"
|
|
android:layout_width="32dp"
|
|
android:src="@drawable/item_add_img"
|
|
android:layout_marginTop="32dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_height="32dp">
|
|
</ImageView>
|
|
<TextView
|
|
android:id="@+id/item_name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="7dp"
|
|
android:paddingEnd="7dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:ellipsize="marquee"
|
|
android:textSize="16sp"
|
|
android:includeFontPadding="false"
|
|
android:layout_marginVertical="10dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:textColor="@color/item_text_color"
|
|
/>
|
|
</RelativeLayout>
|
|
<ImageView
|
|
android:layout_height="18dp"
|
|
android:id="@+id/item_sel"
|
|
android:layout_width="18dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_alignParentEnd="true">
|
|
</ImageView>
|
|
</RelativeLayout>
|