具有自定义行布局的无线电警报对话框

Radio alert dialog with custom row layout

我有 AlertDialog,是这样构建的:

AlertDialog.Builder builder = new AlertDialog.Builder(context);
CharSequence[] filters = {"a", "b", "c", "d"};            
builder.setTitle("Title");
builder.setSingleChoiceItems(items, checked, this);
filter_dialog = builder.create();

效果很好,但现在我需要将其更改为每行填充 2 个值。
例如名称和价格。
我想使用 LinearLayout、orientation="horizontal" 和其下的 2 个 TextView 创建 XML 布局,但我不知道如何将它与构建器一起使用以及如何将字符串填充到 TextView 中。

我试图阅读这里的所有示例和帖子,但它不符合我的需要..

谢谢。

您可以使用自定义布局制作自定义对话框。这里有一个很好的教程:

http://www.mkyong.com/android/android-custom-dialog-example/

编辑:然后您必须创建自己的行布局和自定义 ListView。

检查这些解决方案:How can I display a list view in an Android Alert Dialog?

您可以像这样创建自定义适配器:

public class CustomAdapter extends ArrayAdapter<CustomObject> {

Context context; 
int layoutResourceId;    
ArrayList<CustomObject> data = null;

public CustomAdapter (Context context, int layoutResourceId, ArrayList<CustomObject> data) {
    super(context, layoutResourceId, data);
    this.layoutResourceId = layoutResourceId;
    this.context = context;
    this.data = data;
}

static class ViewHolder
{
    ImageView imgDealImage;
    TextView txtDescription;

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder = null;

    if(convertView == null)
    {
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        convertView = inflater.inflate(layoutResourceId, parent, false);

        holder = new ViewHolder();
        holder.imgDealImage = (ImageView)convertView.findViewById(R.id.imgDealImage);
        holder.txtDescription = (TextView)convertView.findViewById(R.id.txtDescription);


        convertView.setTag(holder);
    }
    else
    {
        holder = (ViewHolder)convertView.getTag();
    }

    int image = data.get(position).getImage();
    String description = data.get(position).getDescription();


    holder.imgDealImage.setImageResource(image);
    holder.txtDescription.setText(description);


    return convertView;
    }

}