You've already forked HybridManager
mirror of
https://github.com/encounter/HybridManager.git
synced 2026-03-30 11:16:48 -07:00
25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent">
|
|
<ProgressBar android:id="@+id/progress"
|
|
android:indeterminate="true"
|
|
android:layout_centerInParent="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<LinearLayout android:id="@+id/appChooser"
|
|
android:visibility="gone"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<com.viewpagerindicator.TitlePageIndicator
|
|
android:id="@+id/indicator"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/viewpager"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
</RelativeLayout> |