2015-01-28 16:46:39 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:my="http://schemas.android.com/apk/res-auto"
|
|
|
|
style="@style/MaterialActivity"
|
2015-02-01 12:05:59 -05:00
|
|
|
android:padding="0dp"
|
2015-01-28 16:46:39 -05:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<com.viewpagerindicator.CirclePageIndicator
|
2015-01-29 04:17:46 -05:00
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="10dp"
|
2015-01-28 16:46:39 -05:00
|
|
|
android:id="@+id/pager_indicator"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
2015-02-09 07:00:19 -05:00
|
|
|
my:radius="5dp"
|
|
|
|
my:fillColor="?attr/colorAccent"/>
|
2015-01-28 16:46:39 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|