item_tips.xml 770 Bytes
Newer Older
wjg committed
1
<?xml version="1.0" encoding="utf-8"?>
wjg committed
2
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
wjg committed
3
    android:layout_width="match_parent"
wjg committed
4 5 6 7 8 9 10
    android:layout_height="wrap_content">
    <TextView
        android:id="@+id/layout_tips"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/tip_margin_top"
        android:button="@null"
wjg committed
11
        android:foreground="@null"
wjg committed
12 13 14 15 16 17 18 19
        android:gravity="center"
        android:lines="1"
        android:paddingTop="@dimen/tip_padding_top"
        android:paddingBottom="@dimen/tip_padding_bottom"
        android:text="温馨提示"
        android:textColor="@color/textDisable"
        android:textSize="@dimen/ts_tips" />
</FrameLayout>
wjg committed
20