<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_20"
|
android:gravity="center">
|
|
|
<!-- <ProgressBar-->
|
<!-- android:id="@+id/load_pb"-->
|
<!-- android:layout_width="40dp"-->
|
<!-- android:layout_height="40dp"-->
|
<!-- android:layout_marginTop="@dimen/dp_10"-->
|
<!-- android:indeterminateDrawable="@drawable/progress_small"-->
|
<!-- app:layout_constraintEnd_toEndOf="parent"-->
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
<!-- app:layout_constraintTop_toTopOf="parent" />-->
|
|
<ImageView
|
android:id="@+id/load_more_iv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
/>
|
|
<TextView
|
android:id="@+id/load_more_content_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:maxLines="1"
|
android:paddingStart="@dimen/dp_10"
|
android:paddingEnd="@dimen/dp_0"
|
android:text="@string/device_loading"
|
android:textColor="@color/text_FFACACAC"
|
android:textSize="@dimen/text_12"
|
|
|
/>
|
|
</LinearLayout>
|