gpt4 book ai didi

java - 如何在 mainActivity 中将 findViewById 与 fragment 一起使用?

转载 作者:行者123 更新时间:2023-12-02 08:55:50 25 4
gpt4 key购买 nike

我查看了讨论此问题的其他问题,我了解到我的问题就在那里,因为我试图找到一个不在实际显示 View 中的 View (我猜)。

但我不知道如何解决这个问题。

这是我的MainActivity.java,其中错误出现在最终ListView列表...

public class MainActivity extends AppCompatActivity {

private AppBarConfiguration mAppBarConfiguration;
private Context context = this;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//-------------------------------------- Apero list ---------------------------
ArrayList<AperoVersion> aperoList = new ArrayList<AperoVersion>();
initList(aperoList);
AperoAdapter adapter = new AperoAdapter(this, R.layout.apero_list_layout, aperoList);
final ListView list = (ListView)findViewById(R.id.list_apero);
list.setAdapter(adapter);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapter, View v, int position, long id) {
AperoVersion selectedItem = (AperoVersion) adapter.getItemAtPosition(position);
Log.v("CustomAdapterExemple", "Selected apero: " + selectedItem.getName());
}
});
}

然后我有fragment_home:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.home.HomeFragment">

<ListView
android:id="@+id/list_apero"
android:layout_width="407dp"
android:layout_height="598dp"
android:layout_marginTop="136dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/text_home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:textAlignment="center"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.043" />
</androidx.constraintlayout.widget.ConstraintLayout>

错误是:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.lapero/com.example.lapero.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ListView.setAdapter(android.widget.ListAdapter)' on a null object reference

最佳答案

list_apero 位于 fragment_home 中,而不位于 activity_main 中。

Activity 中的

findViewById(R.id.list_apero) 返回 null。

您应该在 Fragment 中设置适配器,而不是在 Activity 中。

关于java - 如何在 mainActivity 中将 findViewById 与 fragment 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60488551/

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