23 lines
884 B
Plaintext
23 lines
884 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/loadLayout"
|
||
|
android:padding="10dp"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/item_selector"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
style="@style/NovelBlockTitle"
|
||
|
android:id="@+id/tvText"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:textSize="18sp"
|
||
|
android:text="@string/noRecord"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|