【发布时间】:2021-02-22 01:30:42
【问题描述】:
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle(R.string.personal_info);
LinearLayout layout = new LinearLayout(context);
layout.setPadding(20,20,20,0);
layout.setOrientation(LinearLayout.VERTICAL);
// layout.setOrientation(LinearLayout.VERTICAL);
layout.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT));
// Set up the input
final TextView scan_text = new TextView(context);
final TextView customer_name_text = new TextView(context);
final TextView customer_wasa_text = new TextView(context);
customer_wasa_text.setPaddingRelative(0,5,0,0);
final TextView customer_mob_text = new TextView(context);
customer_mob_text.setPaddingRelative(0,5,0,0);
final TextView customer_email_text = new TextView(context);
customer_email_text.setPaddingRelative(0,5,0,0);
final TextView plot_type=new TextView(context);
plot_type.setPaddingRelative(0,5,0,0);
final TextView customer_address_text = new TextView(context);
customer_address_text.setPaddingRelative(0,5,0,0);
final TextView customer_new_address_text = new TextView(context);
customer_new_address_text.setPaddingRelative(0,5,0,0);
final EditText customer_name_input = new EditText(context);
//customer_wasa_text.setPaddingRelative(0,2,0,0);
/*final EditText customer_wasa_input = new EditText(context);*/
//customer_wasa_input.setPaddingRelative(0,0,0,0);
final EditText customer_mob_input = new EditText(context);
final EditText customer_email_input = new EditText(context);
final Spinner spinner = new Spinner(context);
`ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(context, android.R.layout.simple_spinner_dropdown_item, spinnerArray)`;
spinner.setAdapter(spinnerArrayAdapter);
spinner.setSelection(2);
final EditText customer_address_input = new EditText(context);
/* final EditText customer_new_address_input = new EditText(context);*/
final ImageView imageview=new ImageView(context);
customer_name_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_name_input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(30)});
customer_wasa_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_mob_input.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_email_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_address_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_address_input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(100)});
/*customer_address_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME |InputType.TYPE_TEXT_FLAG_MULTI_LINE);
customer_address_input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(50)});*/
customer_new_address_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME);
customer_new_address_input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(100)});
scan_text.setText("Scan QR/Barcode");
scan_text.setTextSize(15);
scan_text.setTextColor(Color.parseColor("#008080"));
scan_text.setTypeface(null, Typeface.BOLD);
customer_name_text.setText(R.string.enter_customer_name);
//customer_name_text.setText(R.string.enter_customer_name);
customer_wasa_text.setText(idbuilder);
customer_mob_text.setText(R.string.enter_mobile_no);
customer_email_text.setText(R.string.enter_email_address);
plot_type.setText(plotbuilder);
customer_address_text.setText(R.string.enter_address);
customer_new_address_text.setText("Enter new Address");
我被困在一个点上,即如何在警报对话框 Android 中添加两个相邻的文本视图。我想在我制作的红色圆圈处添加一个文本视图或按钮,但我不知道如何实现它。
我发布代码是为了让您更好地了解我所做的以及我必须实现的目标,
我想在不改变父布局方向的情况下实现我的目标,它是垂直的
【问题讨论】:
-
你试过对话框了吗?
-
不,我已经设计了一个警告对话框并想在其中进行更改,我只想显示 2 个文本视图并排显示,如果您知道如何在对话框中进行操作,您可以提供帮助我谢谢你
-
请将您的实际问题的详细信息添加到您的问题中
-
先生,我的实际问题是我想在警报对话框中的编辑文本旁边添加一个文本视图或一个按钮
-
你能添加一些代码吗
标签: android textview android-edittext android-alertdialog