无法从代码中添加XML布局视图

时间:2011-11-30 05:29:58

标签: java android layout android-edittext

我有这些代码:

public class ContentEditText extends EditText {
/*
 * Constructors
 */
public ContentEditText(Context context, AttributeSet attrs, int defStyle)
{
    super(context, attrs, defStyle);
}

public ContentEditText(Context context, AttributeSet attrs)
{
    super(context, attrs);
}

public ContentEditText(Context context)
{
    super(context);
}

/*
 * Listener
 */
@Override   
protected void onSelectionChanged(int selStart, int selEnd)
{ 
    Toast.makeText(getContext(), "selStart is " + selStart + "selEnd is " + selEnd, Toast.LENGTH_LONG).show();
}   
}

public class Main extends Activity {
private LinearLayout mainLayout;
private Button bBT;
private Button uBT;
private Button iBT;
private Button lBT;
private EditText titleET;
private ContentEditText contentET;
private Markup markup;

/** onCreate Function */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    initLayout();     
    setContentView(mainLayout);           
}

private void initLayout()
{
    // initialize some components by XML layout
    mainLayout = (LinearLayout) findViewById(R.id.main_layout);
    bBT = (Button) findViewById(R.id.boldBT);
    uBT = (Button) findViewById(R.id.underlineBT);
    iBT = (Button) findViewById(R.id.italicBT);
    lBT = (Button) findViewById(R.id.listBT);
    titleET = (EditText) findViewById(R.id.titleET);
    // initialize a EditText programmatically
    contentET = new ContentEditText(this);
    contentET.setGravity(Gravity.TOP);
    contentET.setLayoutParams(new LinearLayout.LayoutParams(
            LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
    // add the EditText to the main layout
    mainLayout.addView(contentET);
}

我以为我通过正确的方式将contentET添加到主布局,但它不起作用,LogCat为变量contentET说“NullPointerException”,我不知道为什么。谁能告诉我我哪里做错了? 谢谢!

1 个答案:

答案 0 :(得分:2)

setContentView之后,第一个电话应该是super。由于上述代码不是这种情况,因此您尝试在没有inflating的情况下访问布局,因此会抛出nullpointer异常

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.your_xml_file);           
    initLayout();
}