gpt4 book ai didi

java - 动态添加的微调器为空

转载 作者:行者123 更新时间:2023-12-02 09:22:48 25 4
gpt4 key购买 nike

因此,我的应用程序中有一项 Activity 可以动态添加和删除字段,并且默认情况下,已经有一个字段。原始微调器包含其中的所有信息,我可以选择其中的任何对象,但是,动态添加的微调器是空的。如何动态添加填充的微调器?我尝试在 addField 方法中调用填充方法,但这没有帮助,而且让事情变得更奇怪。这是我添加新字段时的样子: enter image description here

这是添加字段的方法:

public void addField(View v) {
if(parentLayout.getChildCount() < maxCourses) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View rowView = inflater.inflate(R.layout.field, null);
//add new row before add field button
parentLayout.addView(rowView, parentLayout.getChildCount() - 1);
} else {
Toast.makeText(this, "No more than " + maxCourses + " courses\ncan be taken per semester", Toast.LENGTH_SHORT).show();
}
}

这是我如何通过“添加类(class)”按钮调用它

addFieldBtn = findViewById(R.id.add_field_btn);
addFieldBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
addField(v);
}
});

这是新生成字段的 field.XML 代码,它们与原始填充字段共享相同的 ID

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/colorSecondaryDark"
android:layout_alignParentBottom="true">

<Spinner
android:id="@+id/first_spinner"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:spinnerMode="dropdown" />

<Button
android:id="@+id/remove_field_button"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorSecondary"
android:gravity="center"
android:onClick="removeField"
android:text="REMOVE\nCOURSE"
android:textSize="12sp" />

</LinearLayout>

如果有人能给我一些提示或帮助,我将不胜感激!

最佳答案

新的旋转器不知道从哪里获取数据。您应该为每个新的旋转器设置一个适配器。就像这里:

public void addField(View v) {
if(parentLayout.getChildCount() < maxCourses) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View rowView = inflater.inflate(R.layout.field, null);
Spinner spinner = rowView.findViewById(R.id.first_spinner);
ArrayAdapter<String> arrayAdapter = getAnAdapterForThatSpinner();
spinner.setAdapter(arrayAdapter)
//add new row before add field button
parentLayout.addView(rowView);
} else {
Toast.makeText(this, "No more than " + maxCourses + " courses\ncan be taken per semester", Toast.LENGTH_SHORT).show();
}
}

关于java - 动态添加的微调器为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58568877/

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