I am building an app in android where I want notes-stick on an image. For that I have drawn a CustomView of the notes-stick and for entering the text into the notes-stick I planned to get the user input in an edittext and onTextChange redraw the canvas with the changed text. But the problem is that when i try doing this, the edittext object in my CustomView gives a nullpointer exception and my application crashes.
Below is the code of my imageActivity..
DrawPanel dview;
DrawText dtext;
EditText et;
FrameLayout fm;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_image);
Bundle bundle = getIntent().getExtras();
final String value = bundle.getString("key");
Bitmap bmp = BitmapFactory.decodeFile(value);
ImageView imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageBitmap(bmp);
Button bd = (Button) findViewById(R.id.buttonDraw);
Button bt = (Button) findViewById(R.id.buttonText);
Button be = (Button) findViewById(R.id.buttonExit);
fm = (FrameLayout) findViewById(R.id.main_view);
dview = new DrawPanel(this);
dtext = new DrawText(this);
et = (EditText) findViewById(R.id.editText); //et is showing null
bd.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
fm.addView(dview);
}
});
bt.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
et.requestFocus();
fm.addView(dtext);
}
});
et.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
dtext.invalidate();
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
be.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
Below is the ondraw method of my customview
canvas.drawText(((EditText)findViewById(R.id.editText)).getText().toString(),Drect.getLeft()+10,Drect.getTop()+15, paint); //this line gives nullpointer exception
Here is my logcat...
08-19 17:20:32.408: E/AndroidRuntime(356): FATAL EXCEPTION: main
08-19 17:20:32.408: E/AndroidRuntime(356): java.lang.NullPointerException
08-19 17:20:32.408: E/AndroidRuntime(356): at com.nexapp.imgedit.DrawText.DrawAll(DrawText.java:85)
08-19 17:20:32.408: E/AndroidRuntime(356): at com.nexapp.imgedit.DrawText.onDraw(DrawText.java:57)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.View.draw(View.java:6880)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.drawChild(ViewGroup.java:1646)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.View.draw(View.java:6883)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.widget.FrameLayout.draw(FrameLayout.java:357)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.drawChild(ViewGroup.java:1646)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.drawChild(ViewGroup.java:1644)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.View.draw(View.java:6883)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.widget.FrameLayout.draw(FrameLayout.java:357)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.drawChild(ViewGroup.java:1646)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.drawChild(ViewGroup.java:1644)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.View.draw(View.java:6883)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.widget.FrameLayout.draw(FrameLayout.java:357)
08-19 17:20:32.408: E/AndroidRuntime(356): at com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:1862)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewRoot.draw(ViewRoot.java:1522)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewRoot.performTraversals(ViewRoot.java:1258)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.view.ViewRoot.handleMessage(ViewRoot.java:1859)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.os.Handler.dispatchMessage(Handler.java:99)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.os.Looper.loop(Looper.java:123)
08-19 17:20:32.408: E/AndroidRuntime(356): at android.app.ActivityThread.main(ActivityThread.java:3683)
08-19 17:20:32.408: E/AndroidRuntime(356): at java.lang.reflect.Method.invokeNative(Native Method)
08-19 17:20:32.408: E/AndroidRuntime(356): at java.lang.reflect.Method.invoke(Method.java:507)
08-19 17:20:32.408: E/AndroidRuntime(356): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
08-19 17:20:32.408: E/AndroidRuntime(356): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
08-19 17:20:32.408: E/AndroidRuntime(356): at dalvik.system.NativeStart.main(Native Method)
I just realised that the statement
et= (EditText) findViewById(R.id.editText);
in ImageActivity itself is giving null, i have no clue why..
Here is my xml file for the layout.. Note: the EditText can be put anywhere, because finally it will be hidden, its purpose is just to take value from user and update the value on the notes-stick..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/buttonDraw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Draw Rect" >
</Button>
<Button
android:id="@+id/buttonText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Make Text" >
</Button>
<Button
android:id="@+id/buttonExit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Exit" >
</Button>
</LinearLayout>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFffff" >
<ImageView
android:id="@+id/imgView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ImageView>
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Value Here!!!" >
</EditText>
</FrameLayout>