2020-04-05 13:15:03 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
android:padding="8dp"
|
|
|
|
|
android:id="@+id/footer_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/footer_view_height">
|
2020-08-15 22:05:07 +08:00
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintTextView
|
2020-04-05 13:15:03 +08:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:id="@+id/footer_tip"
|
|
|
|
|
android:text="@string/tip_load_end"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:tint="@color/default_color_text_secondary" />
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
</RelativeLayout>
|