简体   繁体   English

在对话框中设置高度和宽度?

[英]Set height and width in an Dialog Box?

I am using a XML-layout which I am prompting as the dialog box. 我正在使用XML布局,提示将其作为对话框。 Designing of XML-layout is well formatted with enough required height and width.. But when I open it as the dialog box its width is getting disturbed so how to set height and width of dialog box through coding. XML布局的设计格式正确,具有足够的所需高度和宽度。但是当我打开对话框时,其宽度受到干扰,因此如何通过编码设置对话框的高度和宽度。

I even had referred this previous STACK OVERFLOW QUESTION 我什至已经提到了之前的堆栈溢出问题

Here is the code: 这是代码:

// Layout Inflater Code..
    editDialog = new Dialog(this);
        layoutEdit = LayoutInflater.from(this).inflate(R.layout.createlayout, null);

    //layoutEdit.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT));
    editDialog.setContentView(layoutEdit);

// Called the Dialogbox to inflate

updateButton.setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {
                    // TODO Auto-generated method stub
                editDialog.show();  
                }
            });

// XML File Code: // XML文件代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >



<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bd"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:freezesText="false"
        android:text="Enter Name"

        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="@color/whtie"
        android:typeface="monospace" />


    <EditText
        android:id="@+id/txtname"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="textPersonName" >

    </EditText>


</LinearLayout>    
</ScrollView>

Thanks for the help in advance. 我在这里先向您的帮助表示感谢。

Regards 问候

Try this... 尝试这个...

1. Dialog snippet: 1. 对话框片段:

private void CustomDialog(String msg) {
    final Dialog dialog = new Dialog(YourActivity.this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    LinearLayout.LayoutParams dialogParams = new LinearLayout.LayoutParams(
            LayoutParams.MATCH_PARENT, 300);//set height(300) and width(match_parent) here, ie (width,height)

    LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View dislogView = inflater
            .inflate(R.layout.my_custom_popup, null);

    dialog.setContentView(dislogView, dialogParams);
    TextView popupMsg = (TextView) dialog.findViewById(R.id.popupMsg);
    Button popupOk = (Button) dialog.findViewById(R.id.popupOk);
    popupMsg.setText(msg);
    popupOk.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            dialog.dismiss();
        }
    });

    dialog.show();
}

2.Then call CustomDialog(Str) where you want to prompt in your activity. 2.然后在要在活动中提示的地方调用CustomDialog(Str)。

CustomDialog("This is customized popup dialog!");

3.Happy coding... 3,快乐的编码...

you better use an activity that looks like a dialog ( i feel it will be better in your case) here is an example code: 您最好使用看起来像对话框的活动(我认为这会更好),这是示例代码:

    public class DialogActivity extends Activity {
/**
 * Initialization of the Activity after it is first created.  Must at least
 * call {@link android.app.Activity#setContentView setContentView()} to
 * describe what is to be displayed in the screen.
 */
@Override
protected void onCreate(Bundle savedInstanceState) {
    // Be sure to call the super class.
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_LEFT_ICON);

    // See assets/res/any/layout/dialog_activity.xml for this
    // view layout definition, which is being set here as
    // the content of our screen.
    setContentView(R.layout.dialog_activity);

    getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, 
            android.R.drawable.ic_dialog_alert);
}
}

this code is from api demos 此代码来自api演示

try 尝试

dialog.getWindow().setLayout(height, width); dialog.getWindow()。setLayout(height,width);

View layout = inflater.inflate(R.layout.view, NULL);
layout.setMinimumWidth(200);
layout.setMinimumHeight(200);
dialog.setContentView(layout);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM