答えて

3

あなたはこれを使用することができます。

LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
        LinearLayout.LayoutParams.MATCH_PARENT, 
        LinearLayout.LayoutParams.WRAP_CONTENT); 
+0

エラーが発生しました...エラーが発生しました – Si8

0

私は遅すぎるそれ `sと思いますが、あなたはこれを試すことができます。

AlertDialog.Builder editalert = new AlertDialog.Builder(this); 

editalert.setTitle("messagetitle"); 
editalert.setMessage("here is the message"); 


final EditText input = new EditText(this); 
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
     LinearLayout.LayoutParams.FILL_PARENT, 
     LinearLayout.LayoutParams.FILL_PARENT); 
input.setLayoutParams(lp); 
editalert.setView(input); 

editalert.setPositiveButton("Send via email", new DialogInterface.OnClickListener() { 
    public void onClick(DialogInterface dialog, int whichButton) { 


    } 
}); 


editalert.show(); 
関連する問題