我有这些代码:
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”,我不知道为什么。谁能告诉我我哪里做错了? 谢谢!
答案 0 :(得分:2)
在setContentView
之后,第一个电话应该是super
。由于上述代码不是这种情况,因此您尝试在没有inflating
的情况下访问布局,因此会抛出nullpointer
异常
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_xml_file);
initLayout();
}