无法修复按钮的随机位置

时间:2011-05-16 08:03:33

标签: android button

我有myPopUp窗口......还有按钮的迷你面板。但是当我添加按钮时......他们添加了随机位置(高度-_-)enter image description here

请看图像,你可以看到这个。

有人可以帮我解决吗?

这里代码:

int xW = curWidth/5; ///width of my buttons 
        // xW=xW-100;
         Fullmain.addView(toolbar,curWidth-50,50);
         toolbar.setOrientation(LinearLayout.HORIZONTAL);
         toolbar.setBackgroundColor(Color.BLACK);
         toolbar.addView(delete,xW,40);///delete,btnUp,btnGo,btnDown,btnOk - -my buttons)
         toolbar.addView(btnUp,xW,40);
         toolbar.addView(btnGo,xW,40);
         btnUp.setText(Html.fromHtml("<h1>&#9650;</h1>"));
         btnDown.setText(Html.fromHtml("<h1>&#9660;</h1>"));
         btnOk.setText("Save");
          toolbar.addView(btnDown,xW,40);
          toolbar.addView(btnOk,xW,40);

我从未见过这个mmmm错误..请告诉我如何解决它

1 个答案:

答案 0 :(得分:0)

尝试

toolbar.setGravity(Gravity.CENTER_VERTICAL);