47 lines
No EOL
1.7 KiB
XML
47 lines
No EOL
1.7 KiB
XML
<?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:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="176dp"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="64dp"
|
|
android:background="@drawable/add_bookmark_background"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/successView"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:visibility="gone"
|
|
android:layout_gravity="center"
|
|
app:srcCompat="@drawable/star" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressView"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center" />
|
|
|
|
<TextView
|
|
android:id="@+id/adding_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="32dp"
|
|
android:layout_marginBottom="12dp"
|
|
android:gravity="center"
|
|
android:text="Adding..." />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |