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.
23 lines
733 B
23 lines
733 B
<?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="wrap_content" >
|
|
<TextView
|
|
android:id="@+id/drawer_item_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="48dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="56dp"
|
|
android:textSize="19sp"
|
|
android:textColor="#fff"
|
|
android:gravity="center_vertical"
|
|
android:ellipsize="end"
|
|
android:lines="1"
|
|
android:singleLine="true"
|
|
android:orientation="vertical" >
|
|
</TextView>
|
|
</LinearLayout>
|
|
|
|
|