gpt4 book ai didi

android - LinearLayout subview 推送其他 View

转载 作者:行者123 更新时间:2023-11-29 14:43:56 24 4
gpt4 key购买 nike

我的 Activity 的主要布局是 LinearLayout。它以两个 child 为例。一个 RelativeLayout 和一个 Button。 RelativeLayout 的宽度和高度设置为 match_parent 和 Button,match_parentwrap_content。不幸的是,RelativeLayout 会按下下面的按钮,直到它不可见为止。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

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

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

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

为什么会这样?我尝试对 RelativeLayout 进行调整,将高度更改为 0dp 并将重量更改为 1。它确实使 Button 可见,但我不确定这是否可取,因为我只改变了RelativeLayout的高度和重量。

最佳答案

试试这个

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

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

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="match_parent"
android:layout_above="@+id/btn"
android:layout_height="match_parent">

<ImageView
android:layout_width="match_parent"
android:src="@drawable/disha"
android:layout_height="match_parent" />

</RelativeLayout>

<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_margin="10dp"
android:text="NIlu"
android:layout_alignParentBottom="true"
android:layout_height="wrap_content" />
</RelativeLayout>
</ScrollView>

关于android - LinearLayout subview 推送其他 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48147486/

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