Размер всплывающего диалогового окна Android не меняется в Android Oreo - PullRequest
0 голосов
/ 14 декабря 2018

Я работаю над проектом Android.Я хочу показать всплывающее диалоговое окно в моей деятельности.Я реализовал это (все коды прилагаются ниже).Но мой вопрос, когда я запускаю этот проект в Android, всплывающее окно показывает, как это. Мне нужно увеличить ширину этого всплывающего диалога.Я попробовал несколько решений, но у меня не получилось. Пожалуйста, помогите мне решить эту проблему.Заранее спасибо.

enter image description here

Вот мой код

XML-файл -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/lv_main">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical">

    <TextView
        android:id="@+id/name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="22sp"
        android:text="MSGP3006"
        android:textColor="@color/Black"
        android:textStyle="bold"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="QTY:2 | Weight : 500g | Discount::25%"/>

        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:layout_marginBottom="@dimen/dimen_5dp"
        android:layout_gravity="bottom">

        <TextView
            android:id="@+id/amount"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Rs.360.00"
            android:gravity="end"
            android:textColor="@color/Sky_Dark_Blue"
            android:textSize="22sp"/>

    </LinearLayout>

</LinearLayout>

Java-файл -

public class AddInvoiceDialog extends Dialog {

    public Activity activity;
    public Dialog dialog;
    public Button btn_add;

    public AddInvoiceDialog(Activity a) {
        super(a);
        // TODO Auto-generated constructor stub
        this.activity = a;
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.inv_add_new_invoice_popup);

        btn_add = (Button) findViewById(R.id.btn_add);

        btn_add.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v)
            {
                activity.finish();
            }
        });
    }
}

Ответы [ 2 ]

0 голосов
/ 14 декабря 2018

Вы можете установить пользовательское представление в диалоге оповещений, как указано ниже:

AlertDialog alertDialog = new AlertDialog.Builder (context) .create ();LayoutInflater inflater = (LayoutInflater) context.getSystemService (Context.LAYOUT_INFLATER_SERVICE);View dialogView = inflater.inflate (R.layout.inv_add_new_invoice_popup, null);alertDialog.setView (dialogView);alertDialog.setCancelable (ложь);alertDialog.show ();

0 голосов
/ 14 декабря 2018

Добавьте строку ниже после setContentView(R.layout.inv_add_new_invoice_popup);

getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);

Вы получите всплывающее окно, соответствующее ширине устройства.

Вам также необходимо добавить android:orientation="vertical" в родительском LinearLayout, этосодержит несколько детей.

...