- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试为 Android 中的布局元素设置一个新的自定义 ArrayAdapter(我已经做过几十次了),但似乎每当我开始时,我的代码中都会出现空对象引用错误 Activity 。
我检查了每一个细节,似乎没有什么异常。
我的 CustomAdapter 文件 (CustomAdapterRangliste):
package ba.unsa.etf.rma.klase;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import java.util.ArrayList;
import ba.unsa.etf.rma.R;
public class CustomAdapterRangliste extends ArrayAdapter<RangLista> {
private Context mContext;
private int resources;
private ArrayList<RangLista> rang;
public CustomAdapterRangliste(Context context, int res, ArrayList<RangLista> rang) {
super(context, res, rang);
mContext = context;
resources = res;
this.rang = rang;
}
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(mContext);
convertView = inflater.inflate(R.layout.rangliste, parent, false);
//View view = inflater.inflate(R.layout.activity_igraj_kviz_akt, null);
TextView textView = (TextView) convertView.findViewById(R.id.etRangliste);
final RangLista rangIgraca = rang.get(position);
textView.setText(rangIgraca.toString());
return convertView;
}
}
布局元素 (rangliste.xml)
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">
<TextView
android:id="@+id/etRangliste"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="696dp"
android:text="TextView"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
我用来初始化和绑定(bind) CustomAdapter 的代码(在实现 fragment 的 Activity 中):
final ListView rangLista = (ListView) findViewById(R.id.lvRanglista);
final ArrayList<RangLista> ranking = new ArrayList<>();
final CustomAdapterRangliste rangAdapter = new CustomAdapterRangliste(this, R.layout.rangliste, ranking);
rangLista.setAdapter(rangAdapter);
带有 ListView 元素的布局文件 (fragment_ranglista.xml):
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragmenti.RanglistaFrag">
<!-- TODO: Update blank fragment layout -->
<ListView
android:id="@+id/lvRanglista"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#4FD80000"
android:scrollbars="vertical" />
</FrameLayout>
fragment 文件:
package ba.unsa.etf.rma.fragmenti;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import ba.unsa.etf.rma.R;
/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link RanglistaFrag.OnFragmentInteractionListener} interface
* to handle interaction events.
* Use the {@link RanglistaFrag#newInstance} factory method to
* create an instance of this fragment.
*/
public class RanglistaFrag extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
public RanglistaFrag.OnFragmentInteractionListener2 mListener;
public void postaviListener (RanglistaFrag.OnFragmentInteractionListener2 mListener)
{
this.mListener=mListener;
}
public RanglistaFrag() {
// Required empty public constructor
}
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment ba.unsa.etf.rma.fragmenti.RanglistaFrag.
*/
// TODO: Rename and change types and number of parameters
public static RanglistaFrag newInstance(String param1, String param2) {
RanglistaFrag fragment = new RanglistaFrag();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_ranglista, container, false);
}
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
/* if (mListener != null) {
mListener.onFragmentInteraction(uri);
}*/
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
/*if (context instanceof OnFragmentInteractionListener) {
mListener = (OnFragmentInteractionListener) context;
} else {
throw new RuntimeException(context.toString()
+ " must implement OnFragmentInteractionListener");
}*/
}
@Override
public void onDetach() {
super.onDetach();
// mListener = null;
}
/**
* This interface must be implemented by activities that contain this
* fragment to allow an interaction in this fragment to be communicated
* to the activity and potentially other fragments contained in that
* activity.
* <p>
* See the Android Training lesson <a href=
* "http://developer.android.com/training/basics/fragments/communicating.html"
* >Communicating with Other Fragments</a> for more information.
*/
public interface OnFragmentInteractionListener2 {
// TODO: Update argument type and name
public void azuriranjeRangliste();
}
}
我不知道我做错了什么,类似的问题都没有帮助我,我检查了遗漏的行,但没有成功
最佳答案
该错误意味着当您调用此 rangLista.setAdapter(rangAdapter);
时,变量 rangLista
为 null。这种情况可以通过多种方式发生,但我首先要检查的是您是否正在膨胀正确的布局,因为很可能 findViewById(R.id.lvRanglista);
行返回 null。
检查您的布局文件是否包含具有您在 findViewById
中使用的 ID 的 ListView 。
关于java - 如何修复 Android 中的 'Attempt to invoke ' void android.widget.ListView.setAdapter(android.widget.ListAdapter )' on a null object reference' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56414245/
我正在实现 AdapterView产生一个AbsListView -like 类,我可以使用 CursorAdapter在布局中。我正在实现这个,因为我想使用方便的自动数据更新行为 CursorAda
Try to focus on general "dos and donts" regarding lists, e.g. is adding and removing 30 items of a 2
我有一个listadapter,其中有很多listitems,每个项目都包含一个textview 和一个imageview。我想从后端下载图片( 以 Base64 编码 ),所以 Picasso 和通
我对 Android 还很陌生,目前在使用自定义列表适配器时遇到一些问题。 基本上,我想制作一个问题列表,每个问题都有不同的类型(单选、复选框、文本、数字)。当 ListView 生成时,它显示得很好
我需要在另一个线程中加载自定义 ListAdapter 吗?我之前已经这样做过,但我也在同一个线程中下载了数据。 使用或不使用线程加载 ListAdapter 有何优缺点?加载线程是否需要大量资源?
我刚刚开始开发 Android,但遇到了问题。我有一个 DrawerNavigationListAdapter 和一个 DrawerNavigationListView,并且工作正常,现在我尝试向其中
我有一个 ListAdapter,用于在 Listview 中显示列表。现在我添加了一个长按菜单操作来删除任何选定的项目。 public boolean onContextItemSelected(M
加载列表适配器的最佳方式是什么。简单的问题,但我已经知道你们中的大多数人会说什么。你会说使用 LoaderManager/CursorManager。每个人都会告诉我它使用起来多么容易,而且它不能在
我已经有一个使用 SQLite 数据库和列表适配器的应用程序。我正在尝试更新我的应用程序以使用全文搜索功能,但正在努力寻找问题的答案。基本上,当我使用必要的 _id 列创建虚拟表时,数据库会将其转换为
我使用这个例子中的 ListAdapter: http://code.google.com/p/au-optimizing-layouts-201/source/browse/au_optimizin
在 ListAdapter 中,如何将数据添加到现有列表?submitList()只会用新列表替换现有列表, 也许一种更新数据的方法是这样的 adapter.addNewItem(list) 最佳答案
我在 RecyclerView 中遇到了分页无限滚动的问题,我正在使用 .addAll() 添加所有新项目 movieList.addAll(it.movieList) adapter.submi
我正在使用 Android Room和 Rx Flowable更新 RecyclerView将对象从我的数据库中。为了获得更好的动画和性能,我更新了项目以使用新的 ListAdapter在我的项目中。
我正在尝试将我的 Adapter 转换为 ListAdapter,以便将来包含 Paging 库。我的应用程序是一个基本的 2 fragment 笔记应用程序,第一个 fragment 具有回收器 V
我正在设置一个 RecyclerView,它使用 ListAdapter 来计算更改时的动画。 RecyclerView 通过 ViewModel 接收数据,ViewModel 通过 Firebase
我正在尝试使用 JSON 数据源中的项目列表填充 View 。我似乎无法让适配器在我的列表中显示 JSON 数据。这就是我到目前为止所做的。 MainActivity.java package com
我看了http://developer.android.com/reference/android/widget/ListAdapter.html并看到 ListAdapter 是一个公共(publi
我正在尝试获取 HashMap 的 ArrayList,以尝试获取可用的 ListAdapter。当我运行这个时,我得到一个 java.lang.RuntimeException: Your cont
好吧,所以我创建了一个 ListView 和我自己的 ListAdapter,但是每当我将结果添加到 ListAdapter 时,它都会崩溃,并显示 NullPointerException 当 fi
我有一个包含多个字段的类,我只想在 ListView 中显示其中一个字段 class FOO { String f1; String f2; String f3; }; FOO fo
我是一名优秀的程序员,十分优秀!