gpt4 book ai didi

android - 为什么 RelativeLayout.LayoutParams.addRule() 不起作用?

转载 作者:搜寻专家 更新时间:2023-11-01 07:39:30 25 4
gpt4 key购买 nike

在 OnCreate() 中,我按如下方式初始化 mRelLayout:

mRelLayout = (RelativeLayout) findViewById(R.id.relative_layout);

稍后,我尝试在屏幕底部放置一个动态创建的按钮:

RelativeLayout.LayoutParams layoutParams = 
new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
mRelLayout.addView(dynamicallyCreateButton);

我正在使用以下布局 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView android:id="@+id/tv_intro1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="@string/intro1" />

<Button android:id="@+id/btn_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_intro1"
android:layout_centerHorizontal="true"
android:text="@string/button_label" />

<TextView android:id="@+id/tv_label1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btn_1"
android:text="" />

<TextView
android:id="@+id/tv_content1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_label1"
android:text="" />

<TextView android:id="@+id/tv_label2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_content1"
android:text="" />

<TextView android:id="@+id/tv_content2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_label2"
android:text="" />

</RelativeLayout>
</ScrollView>

问题是 dynamicallyCreateButton 总是显示在屏幕的顶部,而不是我想要的底部。

我做错了什么?

最佳答案

你错过了一些东西:

RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(/*...*/);
layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);

dynamicallyCreateButton.setLayoutParams(layoutParams); // <== missing line

mRelLayout.addView(dynamicallyCreateButton);

关于android - 为什么 RelativeLayout.LayoutParams.addRule() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5938124/

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