gpt4 book ai didi

java - 如何修复“android相对布局中的某些小部件未出现”

转载 作者:行者123 更新时间:2023-12-02 00:14:11 24 4
gpt4 key购买 nike

我用一些小部件编写了一个relativeLayout,为什么只出现了小部件笔记本,而linearLayout btn_list和按钮比例没有出现?如何让他们出现?

代码如下:

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

<RelativeLayout
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="38dp">
<Button
android:layout_width="15dp"
android:layout_height="15dp"/>
</RelativeLayout>
<RelativeLayout
android:layout_below="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black">
<com.dazzle.note.view.**NoteBook**//surfaceview defined by myself
android:id="@+id/note_book"
android:layout_below="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>

<**LinearLayout**
android:id="@+id/btn_list"
android:layout_width="33dp"
android:layout_height="155dp"
android:orientation="vertical"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:layout_below="@+id/title" >
<Button
android:id="@+id/pen"
android:layout_width="21dp"
android:layout_height="21dp"/>
<Button .../>
</LinearLayout>
<**Button**
android:id="@+id/scale2"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_gravity="end"/>
</RelativeLayout>

最佳答案

您只需将 btn_list 设置在笔记本下方而不是标题下方 -

...
<**LinearLayout**
android:id="@+id/btn_list"
android:layout_width="33dp"
android:layout_height="155dp"
android:orientation="vertical"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:layout_below="@+id/note_book" >
...

或者您可以将父 View 设置为 LinearLayout 而不是relativelayout。

关于java - 如何修复“android相对布局中的某些小部件未出现”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58096666/

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