mirror of https://github.com/kurisufriend/Clover
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/drawer_item_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="48dp"
|
|
android:layout_weight="1"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="8dp"
|
|
android:textSize="19sp"
|
|
android:textColor="#fff"
|
|
android:gravity="center_vertical"
|
|
android:ellipsize="end"
|
|
android:lines="1"
|
|
android:singleLine="true">
|
|
</TextView>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/drawer_item_count_container"
|
|
android:background="@drawable/pin_icon_blue"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/drawer_item_count"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:textSize="16dp"
|
|
android:textColor="#fff"
|
|
android:text="99" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|