【发布时间】:2018-05-23 07:23:31
【问题描述】:
我想在我的应用程序中创建包含一些项目列表的自定义对话框。这是我的适配器代码
上下文上下文; ArrayList statusList;
public MaritalStatusAdapter(Context context, ArrayList<String> statusList){
this.context = context;
this.statusList = statusList;
Logger.msg("Reg", ":" + statusList.get(0));
}
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View v = LayoutInflater.from(context).inflate(R.layout.spinner_list_item, parent, false);
Logger.msg("Reg", "here");
return new ViewHolder(v);
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.item.setText(statusList.get(position));
Logger.msg("Reg", "here");
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public int getItemCount() {
return statusList.size();
}
class ViewHolder extends RecyclerView.ViewHolder {
@BindView(R.id.item)
TextView item;
public ViewHolder(View itemView) {
super(itemView);
ButterKnife.bind(this, itemView);
Logger.msg("Reg", "heee555y");
}
@OnClick(R.id.item)
public void onClick(){
Logger.msg("Reg", "heeey");
}
}
我认为这里的所有代码都很好,应该可以按我的意愿工作。 这是我的对话框生成器代码
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
LayoutInflater inflater = getLayoutInflater();
View dialogView = (View) inflater.inflate(R.layout.custom_alert_dialog, null);
builder.setView(dialogView);
RecyclerView rv = (RecyclerView) dialogView.findViewById(R.id.rv);
MaritalStatusAdapter adapter = new MaritalStatusAdapter(getActivity(), maritalStatusList);
rv.setAdapter(adapter);
AlertDialog dialog = builder.create();
dialog.show();
因此,这段代码向我显示了我的自定义对话框视图和我的编辑文本,该文本已添加到 xml 文件中,但不会在 recyclerView 中显示任何内容。我确定我的 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">
<EditText
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@null"
android:drawableLeft="@drawable/search"
android:drawablePadding="10dp"
android:hint="@string/search"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:background="@color/vertical_line"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/search" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/view1" />
</android.support.constraint.ConstraintLayout>
在我的custom_alert_dialog.xml文件的顶部,但我怎么说我认为这里没有错误
有人可以帮助我或分享一些关于此类活动的好教程。顺便说一句,这可能是一个小错误。))
【问题讨论】:
-
为什么你确定你的xml文件没问题?如果我们没有看到布局文件,这可能是布局参数或其他无法猜测的问题。另一个问题可能是,您的 RecyclerView 是 not setting any LayoutManager。但同样,这可以在您尚未发布的 XML 中完成。
-
在设置适配器后尝试`builder.setView(dialogView);`
-
@JosefAdamcik 所以,你想说我应该把 LayoutManager 放到我的代码中??
-
@V-rundPuro-hit 我之前试过了,没用
-
@AssetBekbossynov 我想说的是,即使您认为它是正确的,您也应该为对话框添加布局 xml。是的,尝试设置layoutmanager(阿里已经有回复了)
标签: android android-recyclerview android-alertdialog