18 lines
520 B
XML
18 lines
520 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="4dp"
|
|
android:max="100"
|
|
android:visibility="gone"
|
|
tools:progress="60"
|
|
tools:visibility="visible"/>
|
|
|
|
</FrameLayout>
|