24 lines
977 B
XML
24 lines
977 B
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">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left"/>
|
|
<ProgressBar
|
|
android:id="@+id/progressbar"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp3"
|
|
android:progressDrawable="@drawable/progressbar"
|
|
style="?android:attr/progressBarStyleHorizontal"/>
|
|
<FrameLayout
|
|
android:id="@+id/fl_content"
|
|
android:background="@color/bg_FAFAFC"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|