2012-09-05 35 views
0

我有一個關於調整大小布局的問題。這是我的活動:更改android中的代碼大小布局

@Override 
protected void onCreate(Bundle savedInstanceState) { 


    super.onCreate(savedInstanceState); 
    requestWindowFeature(Window.FEATURE_NO_TITLE); 

    requestWindowFeature(Window.FEATURE_ACTION_BAR); 
    setContentView(R.layout.log_in); 


} 

如何在此活動中設置大小我的R.layout.log_in?我想將尺寸設置爲400x300,但是在活動中不是xml。

回答

0

我不知道你的要求是什麼,但我更喜歡在xml上設置維度(如果它們被假定爲固定的話)。

無論如何,this會很有用。

在鏈路中使用的代碼:

// Gets linearlayout 
LinearLayout layout = (LinearLayout)findViewById(R.id.numberPadLayout); 
// Gets the layout params that will allow you to resize the layout 
LayoutParams params = layout.getLayoutParams(); 
// Changes the height and width to the specified *pixels* 
params.height = 300; 
params.width = 400;