0

我正在尝试创建一个如屏幕截图所示的布局。那是警告对话吗?我通过创建警报对话进行了尝试,但对话宽度并未占据整个碎石宽度。

在此处输入图像描述

4

1 回答 1

0

如上所示,您应该使用 GUI 元素构建一个 xml 布局文件。

稍后您应该在您的 java 类中扩充这些元素。

前任:

public class Header extends RelativeLayout   {
//default relative layout constructors here and call init(defined below) in each constructor.

 init() {
   LayoutInflater.from(mContext.getApplicationContext()).inflate(R.layout.yourxmlfile, this);
   btnLogo = (Button) findViewById(R.id.btnLogo);
   etSearch = (TextView) findViewById(R.id.etSearch);
   btnSearch = (Button) findViewById(R.id.btnSearch);
   mHandler = new Handler(); // for handling focus
   setListeners();// set your listeners here 
  }
 }
于 2012-10-16T05:57:12.257 回答