我正在研究一个带有 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>
这是因为图像视图的大小吗?它真的很大,所以我把它放在 xxhdpi 文件夹中,这样它就会减少。有什么想法吗?谢谢