ViewPager动态宽度高度

时间:2014-12-03 10:55:35

标签: android android-viewpager viewpagerindicator

我正在尝试将指示器放置在视图寻呼机下面,问题是我正在使用layout_height(编码值474dp)可以使用动态宽度高度以便将指示器定位在视图寻呼机下方

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#dddddd">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#dddddd">


<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/pager"
  android:layout_width="match_parent"
  android:layout_height="274dp"
  android:layout_below="@+id/title"
  android:layout_marginBottom="10dp"></android.support.v4.view.ViewPager>

<CirclePageIndicator android:id="@+id/indicator"
    android:layout_height="wrap_content"
    android:layout_width="match_parent" 
    android:layout_below="@+id/pager"
    app:pageColor="#858585"
    app:fillColor="#f19201" />

</RelativeLayout>
</ScrollView>

2 个答案:

答案 0 :(得分:0)

您正试图在滚动视图中使用RelativeLayout它永远不会工作,替换或用LinearLayout

包裹它

答案 1 :(得分:0)

将LinearLayout与weight属性一起使用:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#dddddd"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </LinearLayout>

    <com.pockee.views.CirclePageIndicator
        android:id="@+id/indicator"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        app:pageColor="#858585"
        app:fillColor="#f19201" />

</LinearLayout>