|
|
|
|
@ -13,262 +13,171 @@
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/main_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:weightSum="4"
|
|
|
|
|
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
|
|
|
|
|
android:id="@+id/imageView_cover"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:foreground="?selectableItemBackground"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:transitionName="cover"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
|
android:id="@+id/cover_card"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
|
|
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
|
|
|
|
|
android:id="@+id/imageView_cover"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:transitionName="cover"
|
|
|
|
|
tools:background="@tools:sample/backgrounds/scenic"
|
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/text_container"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:layout_weight="3">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_title"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="3"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceHeadlineSmall"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:text="@tools:sample/lorem[15]" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_subtitle"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="3"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/textView_title"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_title"
|
|
|
|
|
tools:text="@tools:sample/lorem[15]" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_author"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:background="@drawable/list_selector"
|
|
|
|
|
android:requiresFadingEdge="horizontal"
|
|
|
|
|
android:textColor="?colorTertiary"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/textView_title"
|
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
|
app:layout_constraintStart_toStartOf="@id/textView_title"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_subtitle"
|
|
|
|
|
app:layout_constraintWidth_default="wrap"
|
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_state"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/textView_title"
|
|
|
|
|
app:layout_constraintStart_toStartOf="@id/textView_title"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_author"
|
|
|
|
|
tools:drawableStart="@drawable/ic_state_finished"
|
|
|
|
|
tools:text="Finished" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/info_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:baselineAligned="false"
|
|
|
|
|
android:divider="?attr/colorOutline"
|
|
|
|
|
android:dividerPadding="8dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:showDividers="middle"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/textView_state">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/rating_container"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_rating"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
app:drawableEndCompat="@drawable/ic_star_manga_info"
|
|
|
|
|
tools:text="4.8" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/chapters_container"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_chapters"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
app:drawableTopCompat="@drawable/ic_book_page"
|
|
|
|
|
tools:text="52 chapters" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/source_container"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_source"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
app:drawableTopCompat="@drawable/ic_web"
|
|
|
|
|
tools:text="Source" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/size_container"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_size"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
app:drawableTopCompat="@drawable/ic_storage"
|
|
|
|
|
tools:text="1.8 GiB" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/buttons_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="48dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/info_layout">
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintWidth_percent="0.3"
|
|
|
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Kotatsu.Cover"
|
|
|
|
|
tools:background="@tools:sample/backgrounds/scenic"
|
|
|
|
|
tools:ignore="ContentDescription,UnusedAttribute" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/button_favorite"
|
|
|
|
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
app:icon="@drawable/ic_heart_outline"
|
|
|
|
|
app:iconGravity="textTop"
|
|
|
|
|
app:iconPadding="0dp" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_title"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="3"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceHeadlineSmall"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:text="@tools:sample/lorem[15]" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/button_read"
|
|
|
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:text="@string/read"
|
|
|
|
|
android:textAllCaps="false"
|
|
|
|
|
app:elevation="0dp"
|
|
|
|
|
app:iconGravity="textStart"
|
|
|
|
|
app:iconPadding="8dp"
|
|
|
|
|
tools:text="@string/_continue" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_subtitle"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="3"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_title"
|
|
|
|
|
tools:text="@tools:sample/lorem[12]" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_author"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="12dp"
|
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
|
android:background="@drawable/list_selector"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
android:textColor="?attr/colorTertiary"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_subtitle"
|
|
|
|
|
app:layout_constraintWidth_default="wrap"
|
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_state"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_author"
|
|
|
|
|
tools:drawableStart="@drawable/ic_state_finished"
|
|
|
|
|
tools:text="Finished" />
|
|
|
|
|
|
|
|
|
|
<include
|
|
|
|
|
android:id="@+id/info_layout"
|
|
|
|
|
layout="@layout/layout_details_info"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textView_state" />
|
|
|
|
|
|
|
|
|
|
<org.koitharu.kotatsu.base.ui.widgets.ChipsView
|
|
|
|
|
android:id="@+id/chips_tags"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
app:chipSpacingHorizontal="6dp"
|
|
|
|
|
app:chipSpacingVertical="6dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/buttons_layout" />
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/button_favorite"
|
|
|
|
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:paddingStart="0dp"
|
|
|
|
|
android:paddingEnd="0dp"
|
|
|
|
|
app:icon="@drawable/ic_heart_outline"
|
|
|
|
|
app:iconGravity="textTop"
|
|
|
|
|
app:iconPadding="0dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/button_read"
|
|
|
|
|
app:layout_constraintDimensionRatio="1:1"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView_cover"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/button_read" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/button_read"
|
|
|
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:enabled="false"
|
|
|
|
|
android:text="@string/read"
|
|
|
|
|
android:textAllCaps="false"
|
|
|
|
|
app:iconGravity="textStart"
|
|
|
|
|
app:iconPadding="8dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@id/button_favorite"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/info_layout"
|
|
|
|
|
tools:text="@string/_continue" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_description"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
android:lineSpacingMultiplier="1.2"
|
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/chips_tags"
|
|
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
tools:text="@tools:sample/lorem/random[25]" />
|
|
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
|
android:id="@+id/barrier_header"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:barrierDirection="bottom"
|
|
|
|
|
app:barrierMargin="8dp"
|
|
|
|
|
app:constraint_referenced_ids="imageView_cover,button_read" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
<org.koitharu.kotatsu.base.ui.widgets.ChipsView
|
|
|
|
|
android:id="@+id/chips_tags"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
|
app:chipSpacingHorizontal="6dp"
|
|
|
|
|
app:chipSpacingVertical="6dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/barrier_header" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView_description"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
android:lineSpacingMultiplier="1.2"
|
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/chips_tags"
|
|
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
tools:text="@tools:sample/lorem/random[250]" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
|
|