将图像对齐到android中垂直居中的麻烦

时间:2016-03-24 07:45:56

标签: android

我无法将图像垂直居中对齐。我在这里缺少什么?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_marginTop="35dp"
    android:layout_height="fill_parent">
    <Spinner
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:id="@+id/moviesSpinner"
        android:prompt="@string/movie_prompt" />
    <ImageView
        android:layout_gravity="center_vertical"
        android:gravity="center_vertical"
        android:layout_alignParentRight="true"
        android:src="@drawable/Arrowcircled"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:id="@+id/imageView1" />
</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

试一试!!

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_marginTop="35dp"
android:layout_height="fill_parent">
<Spinner
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:id="@+id/moviesSpinner"
    android:prompt="@string/movie_prompt" />
<ImageView
    android:src="@drawable/Arrowcircled"
    android:layout_width="20dp"
    android:layout_centerInParent="true"
    android:layout_below="@+id/moviesSpinner"
    android:layout_height="20dp"
    android:id="@+id/imageView1" />

答案 1 :(得分:0)

如果您添加大小为RelativeLayout的父spinner,则可以执行此操作

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_marginTop="35dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <Spinner
            android:id="@+id/moviesSpinner"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:prompt="@string/movie_prompt"/>

        <ImageView
            android:id="@+id/imageView1"

            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_gravity="center_vertical"
            android:src="@drawable/bemoir_splash3"/>
    </RelativeLayout>
</RelativeLayout>