按钮点击关闭 activity
Button click closes activity
我的应用程序中有这段代码:
FloatingActionButton addBlogButton = (FloatingActionButton) findViewById(R.id.addBlog);
addBlogButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
final Dialog addBlog = new Dialog(BlogLister.this);
addBlog.setContentView(R.layout.dialog_addblog);
addBlog.setTitle("Enter blog details : ");
blogTitle = (EditText) findViewById(R.id.blogTitle);
blogURL = (EditText) findViewById(R.id.blogURL);
addIt = (Button) findViewById(R.id.addIt);
cancelButton = (Button) findViewById(R.id.cancel);
addBlog.show();
cancelButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
addBlog.dismiss();
}
});
}
});
但是,当我在我的应用程序中单击 addBlogButton
时,它会关闭我的 activity 而不是显示对话框。
但是当我删除时:
cancelButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
addBlog.dismiss();
}
});
根据我的代码,它工作正常。
LOGCAT 错误:
03-13 19:17:40.048 27760-27760/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.innovapp.blogreadr, PID: 27760
java.lang.NullPointerException
at com.innovapp.blogreadr.BlogLister.onClick(BlogLister.java:37)
at android.view.View.performClick(View.java:4444)
at android.view.View$PerformClick.run(View.java:18440)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5052)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:609)
at dalvik.system.NativeStart.main(Native Method)
谁能告诉我问题是什么以及如何解决?
EDIT 我所说的关闭是指 android BACK 按钮应该如何工作,这需要我回到上一个activity
变化:
cancelButton = (Button) findViewById(R.id.cancel);
至:
cancelButton = (Button) addBlog.findViewById(R.id.cancel);
您正在 activity 的根视图上调用 findViewById(int id)
。它返回 null,因为您没有任何具有此 ID 的视图。要使其非空,请给它一个引用并调用 Dialog.findViewById()
Can anyone tell me what the issue is and how to fix it?
很难从提供的代码片段中判断是什么导致了该行为,因此答案是 "probably no"。
更新:
正如@Malwinder 提到的,您应该在 Dialog
而不是 "hosting" Activity
中查找 ID 为 "cancel" 的 Button
。
因为您的 Dialog
实例似乎有一个明确定义的用途(添加博客条目?)我建议您将该代码移到一个单独的 class 中,这样更容易管理和调试。 DialogFragment
class 似乎是您要实现的目标的最佳选择。阅读 API Guide for DialogFragment。
我的应用程序中有这段代码:
FloatingActionButton addBlogButton = (FloatingActionButton) findViewById(R.id.addBlog);
addBlogButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
final Dialog addBlog = new Dialog(BlogLister.this);
addBlog.setContentView(R.layout.dialog_addblog);
addBlog.setTitle("Enter blog details : ");
blogTitle = (EditText) findViewById(R.id.blogTitle);
blogURL = (EditText) findViewById(R.id.blogURL);
addIt = (Button) findViewById(R.id.addIt);
cancelButton = (Button) findViewById(R.id.cancel);
addBlog.show();
cancelButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
addBlog.dismiss();
}
});
}
});
但是,当我在我的应用程序中单击 addBlogButton
时,它会关闭我的 activity 而不是显示对话框。
但是当我删除时:
cancelButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
addBlog.dismiss();
}
});
根据我的代码,它工作正常。
LOGCAT 错误:
03-13 19:17:40.048 27760-27760/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.innovapp.blogreadr, PID: 27760
java.lang.NullPointerException
at com.innovapp.blogreadr.BlogLister.onClick(BlogLister.java:37)
at android.view.View.performClick(View.java:4444)
at android.view.View$PerformClick.run(View.java:18440)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5052)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:609)
at dalvik.system.NativeStart.main(Native Method)
谁能告诉我问题是什么以及如何解决?
EDIT 我所说的关闭是指 android BACK 按钮应该如何工作,这需要我回到上一个activity
变化:
cancelButton = (Button) findViewById(R.id.cancel);
至:
cancelButton = (Button) addBlog.findViewById(R.id.cancel);
您正在 activity 的根视图上调用 findViewById(int id)
。它返回 null,因为您没有任何具有此 ID 的视图。要使其非空,请给它一个引用并调用 Dialog.findViewById()
Can anyone tell me what the issue is and how to fix it?
很难从提供的代码片段中判断是什么导致了该行为,因此答案是 "probably no"。
更新:
正如@Malwinder 提到的,您应该在 Dialog
而不是 "hosting" Activity
中查找 ID 为 "cancel" 的 Button
。
因为您的 Dialog
实例似乎有一个明确定义的用途(添加博客条目?)我建议您将该代码移到一个单独的 class 中,这样更容易管理和调试。 DialogFragment
class 似乎是您要实现的目标的最佳选择。阅读 API Guide for DialogFragment。