我有非活动类MenuHandler
来处理与菜单相关的事件,
我试图在警告对话框中显示开发人员消息,此消息从firebase
实时数据库中获取。
一切都很好但警报对话框没有显示,我尝试调试器检查数据库中是否有任何错误,但我从数据库中正确获得了价值。从数据库获取值没有错误。
当我从MainActivity
选择菜单时,developerMessage
吐司显示没有任何结果。
我正确地将context
传递给MenuHandler
课程。
我可以在使用上下文中显示Alerdialog
吗?
或者我只需要在MainActivity
中编写代码(即只有活动类)。
代码:
public void developersMessage()
{
if (isInternetOn()) {
Toast.makeText(mContext,"Loading message please wait",Toast.LENGTH_SHORT).show();
DatabaseReference mDatabase = FirebaseDatabase.getInstance().getReference();
mDatabase.child("version_1_0").child("dev").addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
try {
final AlertDialog.Builder builder = new AlertDialog.Builder(mContext, R.style.AppCompatAlertDialogStyle);
builder.setTitle(mContext.getString(R.string.welcome_msg));
builder.setMessage(dataSnapshot.child("dev_msg").getValue(String.class));
builder.setPositiveButton("ok",null);
builder.create().show();
}
catch (Exception e)
{
e.printStackTrace();
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
else
{
Toast.makeText(mContext,"please turn on internet ",Toast.LENGTH_SHORT).show();
}
}
答案 0 :(得分:0)
从
中构建AlertDialogmDatabase.child("version_1_0").child("dev").addListenerForSingleValueEvent(...);
addListenerForSingleValueEvent(...)
方法在不同的后台线程上运行,因此无法在UI线程内部更新UI。因此,使用addListenerForSingleValueEvent(...)
方法构建AlertDailog可以解决您的问题。
答案 1 :(得分:0)
您应该使用活动上下文来创建AlertDialog。
请调试以确保调用onDataChange()
也可以尝试使用runOnUiThread:https://developer.android.com/reference/android/app/Activity.html#runOnUiThread(java.lang.Runnable)
yourActivity.runOnUiThread(new Runnable() { public void run() {... code to create & show dialog ...} })
答案 2 :(得分:0)
我得到了答案, 代码没有错,但错误在于我如何从mainactivity发送上下文
这里我错误地启动了Menuhandler类
public boolean onOptionsItemSelected(MenuItem item) {
final MenuHandler mMenuHandler = new MenuHandler(this.getApplicationContext());//bug lies here
如果我们显示alertdialog,那么我们需要这种方式来传递上下文,以便我们的alertdialog正确显示
public boolean onOptionsItemSelected(MenuItem item) {
final MenuHandler mMenuHandler = new MenuHandler(MainActivity.this);//this is right way to pass context
希望这对将来有所帮助。