作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我查看了讨论此问题的其他问题,我了解到我的问题就在那里,因为我试图找到一个不在实际显示 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
中。
findViewById(R.id.list_apero)
返回 null。
您应该在 Fragment 中设置适配器,而不是在 Activity 中。
关于java - 如何在 mainActivity 中将 findViewById 与 fragment 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60488551/
我是一名优秀的程序员,十分优秀!