3

我试图在运行时通过代码更改按钮的高度和宽度。

我的布局xml

   <Button
    android:id="@+id/button1"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/button2"
    android:background="@drawable/button1_background" 
    />

主要活动代码

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
   //some other code
   int displaywidth= getResources().getDisplayMetrics().widthPixels;
    Button f_button = (Button) findViewById(R.id.button1);
    Log.d("F_button width before is",""+ f_button.getWidth());
    f_button.setWidth(displaywidth/2);
    Log.d("F_button width after is",""+ f_button.getWidth());
//some other code
}

Logcat 将宽度前后的 F_button 显示为“0”。

我究竟做错了什么。

谢谢!。

4

4 回答 4

4

我想它可能会帮助你..

Button btn = (Button)findViewById(R.id.btn1); 

android.widget.LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,60); // 60 is height you can set it as u need

btn.setLayoutParams(lp);
于 2013-04-09T09:29:31.653 回答
1

在 java (Activity) 中使用下面的代码

  f_button.setLayoutParams (new LayoutParams(50, LayoutParams.WRAP_CONTENT));
于 2013-04-09T09:07:11.860 回答
0

你应该使用

int displaywidth= getResources().getDisplayMetrics().widthPixels;    
ViewGroup.LayoutParams buttonlp= (ViewGroup.LayoutParams)f_button.getLayoutParams();
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(displaywidth, buttonlp.height);
buttonlp.setLayoutParams(params);

如果不是,LinearLayout您应该使用按钮的父布局而不是LinearLayout

于 2013-04-09T09:08:58.267 回答
0

是的,我试图解决这个问题很长时间。Ajay 的解决方案让我成功了。对于 Kotlin 程序员来说,它看起来像这样:

btn.layoutParams = LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, 60)
于 2020-05-31T22:47:40.677 回答