gpt4 book ai didi

Android:为什么我的 View 会填满整个屏幕而不显示底部的按钮

转载 作者:行者123 更新时间:2023-11-30 04:44:28 25 4
gpt4 key购买 nike

如何阻止我的 View 填满整个屏幕并且不在屏幕底部显示我的按钮?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.vig.comix.ImageZoomView
android:id="@+id/zoomview"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentTop="true" />
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_below="@+id/zoomview" android:layout_alignParentBottom="true">
<ImageButton android:id="@+id/btnPrev"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/ic_media_rew"
android:background="@null"
android:layout_weight="1"
android:width="0px" />
<ImageButton android:id="@+id/btnNext"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/ic_media_ff"
android:background="@null"
android:layout_weight="1"
android:width="0px" />
<ImageButton android:id="@+id/btnMove"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/btn_star"
android:background="@null"
android:layout_weight="1"
android:width="0px" />
<ImageButton android:id="@+id/btnDelete"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/ic_menu_delete"
android:background="@null"
android:layout_weight="1"
android:width="0px" />
</LinearLayout>
</RelativeLayout>

当我更改我的代码并将按钮放在顶部时,它工作正常。我尝试过相对布局、线性布局、lauout 权重...

我做错了什么?

最佳答案

RelativeLayout 可能很难使用。我尽量坚持使用 FrameLayoutLinearLayout。这是我将在您的案例中使用的布局草图:

<LinearLayout orientation="vertical">
<ImageZoomView layout_weight="1" layout_height="wrap_content">
<LinearLayout orientation="horizontal" layout_height="wrap_content">
... buttons ...
</LinearLayout>
</LinearLayout>

未提及时,高度和宽度为 fill_parentImageZoomView 上的 layout_weight 属性将使其在不挤压底部按钮的情况下尽可能地扩展。

关于Android:为什么我的 View 会填满整个屏幕而不显示底部的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5304785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com