Ass*_*nov 8 android android-alertdialog android-recyclerview
我想在我的应用程序中创建包含一些项目列表的自定义对话框。这是我的适配器代码
上下文上下文;ArrayList 状态列表;
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");
}
}
Run Code Online (Sandbox Code Playgroud)
我认为这里所有的代码都很好,它应该可以按我的意愿工作。这是我的对话框生成器代码
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();
Run Code Online (Sandbox Code Playgroud)
因此,此代码向我显示了我的自定义对话框视图以及我在 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>
Run Code Online (Sandbox Code Playgroud)
在顶部我的 custom_alert_dialog.xml 文件,但我怎么说我认为这里没有错误
有人可以帮助我或分享一些关于此类活动的好教程。顺便说一句,这可能是一个小错误。))
我认为你应该为你的recyclerView设置一个LayoutManager。在设置适配器之前添加此行:
rv.setLayoutManager(new LinearLayoutManager(getActivity()));
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7144 次 |
| 最近记录: |