<?xml version="1.0" encoding="utf-8"?>
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_gravity="center"
|
android:layout_margin="3dp"
|
android:background="@drawable/shape_filter"
|
android:ellipsize="end"
|
android:gravity="center"
|
android:lines="2"
|
android:padding="3dp"
|
android:text="中国"
|
android:textColor="@color/gray"
|
android:textSize="12sp" />
|
</FrameLayout>
|