gpt4 book ai didi

java - 相对布局以编程方式添加一个 View ,另一个 View 未正确对齐

转载 作者:行者123 更新时间:2023-12-02 00:05:43 26 4
gpt4 key购买 nike

我正在尝试以编程方式将 TextView 添加到相对布局父级中。但是,第一个 View 未正确对齐,而 View 的其余部分已正确对齐。请参阅附图。

enter image description here

我的代码:

private void setupQuestionChoices(int position) {
question.setText(questionList.get(position).question());
choicesTextViewsList.clear();

for (int i = 0; i < questionList.get(position).choices().size(); i++) {

TextView textView = new TextView(getActivity());

textView.setBackgroundResource(R.drawable.qa_button_background);
textView.setMinWidth(300);
textView.setGravity(Gravity.CENTER);

textView.setText(questionList.get(position).choices().get(i));
textView.setId(i);

RelativeLayout.LayoutParams layoutParams =
new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);

if (i == 0) {
layoutParams.addRule(RelativeLayout.BELOW, question.getId());
} else {
layoutParams.addRule(RelativeLayout.BELOW, choicesTextViewsList.get(i - 1).getId());
}
layoutParams.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
layoutParams.setMargins(20, 20, 20, 20);
relativeLayout.addView(textView, layoutParams);

choicesTextViewsList.add(textView);

choicesTextViewsList.get(i).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
answerSelected = true;
}
});

}
}

我将 View 添加到的相对布局 xml:

<?xml version="1.0" encoding="utf-8"?>
<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:layout_height="match_parent"
android:fillViewport="true">

<RelativeLayout
android:id="@+id/relative_parent" //here is where I add views to
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/question"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="40dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="10dp"
android:orientation="horizontal"
android:textColor="@color/colorPrimary"
android:textSize="30sp"
android:textStyle="bold" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
android:layout_marginBottom="30dp"
android:gravity="center">

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button_back"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="30dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="30dp"
android:background="@drawable/rectangle_border"
android:text="Back"
android:textColor="@android:color/darker_gray" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button_next"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginStart="30dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="30dp"
android:background="@drawable/rectangle_border"
android:text="Next"
android:textColor="@android:color/darker_gray" />
</RelativeLayout>
</RelativeLayout>
</ScrollView>

我阅读了一些与此问题相关的帖子并遵循了其中的指南,但这没有帮助。

How to lay out Views in RelativeLayout programmatically?

Create a new TextView programmatically then display it below another TextView

最佳答案

我使用 for 循环的索引作为 textViews 的 id,我对其进行了更改,以使 Android 为其生成 Id,如下所示,现在按预期工作正常。

我改变了线路

textView.setId(i)

textView.setId(ViewGroup.generateViewId())

谢谢。

关于java - 相对布局以编程方式添加一个 View ,另一个 View 未正确对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58157524/

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