21 lines
708 B
XML
21 lines
708 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/ll_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/grid_search_item_checked"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="35dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="肉沫干拌面"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="#FF9900"
|
|
android:textSize="30sp" />
|
|
|
|
</LinearLayout> |