【问题标题】:How to Add two textview next to each other in alert dialog Android如何在警报对话框Android中添加两个相邻的文本视图
【发布时间】: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


【解决方案1】:

您可以为对话框使用自定义布局 xml。例如:Alert dialog with Custom layout
在您的布局 xml 中,您可以根据需要设置视图。

【讨论】:

  • 先生还有什么办法吗?如果没有 xml 布局,我的意思是我可以通过编程方式完成吗?
【解决方案2】:

两个相邻的文本视图-

<LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="3"
        android:orientation="horizontal">
    
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2.5"
            android:gravity="left"
            android:padding="10dp"
            android:textColor="#000000"
            android:textSize="16dp" />
    
    
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:gravity="center"
            android:padding="10dp"
            android:textColor="#000000"
            android:textSize="16dp" />
    
</LinearLayout>

通过代码-

1.以编程方式创建水平线性布局-

LinearLayout layout = new LinearLayout(context);

layout.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
layout.setOrientation(LinearLayout.HORIZONTAL);

2.创建Textviews并将其添加到linearlayout

TextView tv1= new TextView (context);
 ....
TextView tv2= new TextView (context);
...
layout.addView(tv1);
layout.addView(tv2);

【讨论】:

  • 先生不是 xml 我想以编程方式添加
  • 先生,我发布我的代码以便更好地理解,谢谢
  • @AwaisKhan 将这些视图添加到对话框的代码不是由您发布的,但就像您将这些文本视图添加到警报对话框一样,添加此水平线性布局(并排有两个文本视图)到您的警报对话框
猜你喜欢
  • 2012-11-20
  • 2020-12-08
  • 1970-01-01
  • 2016-10-25
  • 1970-01-01
  • 1970-01-01
  • 2013-03-23
  • 2014-12-15
  • 1970-01-01
相关资源
最近更新 更多