我的警报大小在Android中无法正确显示?

时间:2017-10-14 10:50:59

标签: 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="match_parent">
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:orientation="vertical">


    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:text="@string/name"
        />
    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="Hari"
        android:textColor="@color/colorPrimaryBlack"
        />


    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="@string/customer_id1"
        />
    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="96"
        android:textColor="@color/colorPrimaryBlack"
        />
    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="@string/mobile"
        />
    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="7826963223"
        android:textColor="@color/colorPrimaryBlack"
        />
    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="@string/pickup_address"
        />

    <android.support.v7.widget.AppCompatTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="15dp"
        android:text="ponmeni Muniyandi kovil main road"
        android:textColor="@color/colorPrimaryBlack"
        />
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingBottom="1.0dip"
        android:paddingLeft="4.0dip"
        android:paddingRight="4.0dip"
        android:layout_marginTop="15dp"
        android:paddingTop="5.0dip">

        <Button
            android:id="@+id/Accept"
            android:layout_width="0.0dip"
            android:layout_height="fill_parent"
            android:layout_marginLeft="15dp"
            android:layout_weight="1.0"
            android:background="@drawable/btn_rounded_primary"
            android:textColor="@color/colorPrimarywhite"
            android:text="@string/btn_accept" />
        <Button
            android:id="@+id/Decline"
            android:layout_width="0.0dip"
            android:layout_height="fill_parent"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="15dp"
            android:layout_weight="1.0"
            android:background="@drawable/btn_rounded_black"
            android:text="@string/btn_decline"
            android:textColor="@color/colorPrimarywhite" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>

3 个答案:

答案 0 :(得分:0)

使用Window

以编程方式尝试此设置对话框布局高度和宽度
    Dialog dialog = new Dialog(this);
    dialog.setContentView(R.layout.your_layout);

    Window window = dialog.getWindow();
    window.setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.WRAP_CONTENT);
    window.setGravity(Gravity.CENTER);

    dialog.show();

并使用android:layout_width="match_parent"代替android:layout_width="fill_parent" LinearLayout

  

beacuse android:layout_width="fill_parent"此值已从API级别8开始弃用,并由MATCH_PARENT替换。

答案 1 :(得分:-1)

您可以通过以下方式控制警报框大小:

 alertDialog.getWindow().setLayout(100, 400); //Controlling width and height.

答案 2 :(得分:-1)

您可以尝试以下操作:

dialog.getWindow().setLayout(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);