垂直线性Imageview位于底部

时间:2013-10-29 05:56:57

标签: android xml widget

我正在制作一个带有3个按钮和图像视图的布局我将imageview称为父母的第一个孩子但是当我在实际设备上构建时,imageview在按钮后关闭...真的很奇怪...... 。

继承了xml文件:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:gravity="center"
        android:layout_gravity="center"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/title_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/111"
            android:visibility="visible" />

        <Button

            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/222"
            android:visibility="visible"
           />

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/margin_medium"
                android:gravity="center"
                android:orientation="horizontal" >

                <Button
                    android:id="@+id/highscores_button"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/highscore_btn"
                    android:visibility="visible" />

                <Button
                    android:id="@+id/more_apps_button"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/margin_medium"
                    android:background="@drawable/333"
                    android:visibility="visible" />
        </LinearLayout>
    </LinearLayout>

</FrameLayout>

这是因为imageview的大小?它真的很大所以我把它放在xxhdpi文件夹中,所以它会减少。有什么想法吗?感谢

1 个答案:

答案 0 :(得分:1)

// try this
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:layout_gravity="center"
        android:orientation="vertical">

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

        <ImageView
            android:id="@+id/title_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/111"
            android:visibility="visible" />

        </LinearLayout>

        <Button

            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/222"
            android:visibility="visible"/>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/margin_medium"
            android:gravity="center"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/highscores_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/highscore_btn"
                android:visibility="visible" />

            <Button
                android:id="@+id/more_apps_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/margin_medium"
                android:background="@drawable/333"
                android:visibility="visible" />
        </LinearLayout>
    </LinearLayout>
</FrameLayout>