簡體   English   中英

如何在警報對話框 Android 中添加兩個彼此相鄰的文本視圖

[英]How to Add two textview next to each other in alert dialog Android

     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 中添加兩個彼此相鄰的文本視圖。我想在我制作的紅色圓圈處添加一個文本視圖或按鈕,但我不知道如何實現。

我已經發布了代碼,讓您更好地了解我所做的以及我必須實現的目標,

我想在不改變父布局方向的情況下實現我的目標,它是垂直的

您可以為對話框使用自定義布局 xml。 例如: 帶有自定義布局的警報對話框
在您的布局 xml 中,您可以根據需要設置視圖。

兩個相鄰的文本視圖-

<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);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM