Skip to content

Commit

Permalink
DeterminateSamplesFragment's layout
Browse files Browse the repository at this point in the history
  • Loading branch information
vejei committed Apr 11, 2021
1 parent 4147c3b commit f424d6d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions samples/src/main/res/layout/fragment_determinate_samples.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

<SeekBar
android:id="@+id/seek_bar_progress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:padding="16dp"
android:background="@android:color/white" />

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/sample_list"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/seek_bar_progress"
app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit f424d6d

Please sign in to comment.