如何在视图寻呼机上设置指示器?

时间:2014-09-22 16:46:47

标签: java android xml

我试图在视图寻呼机上显示指示器,使得指示器变为图像底部并对齐中心水平和中心垂直我使用帧布局为此目的但仍未获得所需结果..我想我是缺少我的XML代码的任何属性:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/baneer"
    android:layout_width="fill_parent"
    android:layout_height="140dp"
    android:background="#000000"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <android.support.v4.view.ViewPager
            android:id="@+id/myfivepanelpager"
            android:layout_width="match_parent"
            android:layout_height="130dp"
            android:layout_gravity="center" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:background="#f6f7f9"
            android:orientation="horizontal">

            <com.viewpagerindicator.CirclePageIndicator
                android:id="@+id/view_indicator"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:background="@android:color/transparent" />
        </LinearLayout>
    </FrameLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:-1)

试试这个: android:layout_alignParentBottom="true"代替android:layout_gravity="bottom"