gpt4 book ai didi

android - 嗯? findViewById() 不能在onReceive() 内部调用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:10:45 26 4
gpt4 key购买 nike

在我的一个类(class)中,我尝试访问一个 View (在我的主布局中)以响应收到的广播:

  protected BroadcastReceiver myReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context ctx, Intent intent) {
String action = intent.getAction();
if ( action.equals("com.mydomain.myapp.INTERESTING_EVENT_OCCURRED") ) {
((Activity) ctx).setContentView(R.layout.main);
LinearLayout linLayout = (LinearLayout) findViewById(R.id.lin_layout);
if (linLayout != null) {
Log.i(TAG_OK, "OK to proceed with accessing views inside layout");
}
else
Log.e(TAG_FAIL, "What's wrong with calling findViewById inside onReceive()?");
}
}
};

问题是 findViewById() 总是返回 null,因此我总是收到 TAG_FAIL 错误消息。

完全相同 findViewById(R.id.lin_layout) 在 Activity 的 onCreate() 中调用返回所需的结果,所以我知道它不是上面引用的代码中的拼写错误或其他错误。

为什么会这样?

findViewById()是否有限制在 BroadcastReceiver 里面?

还是其他原因?

最佳答案

BroadcastReceiver 是它自己的类,并没有继承自 android.app.Activity,是吗?因此,按照这种逻辑,您不能指望它包含 Activity 的方法。

将上下文传递给您的 BroadcastReceiver,或者更直接地传递对您要操作的 View 的引用。

// package protected access
LinearLayout linLayout;

onCreate()
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
linLayout = (LinearLayout) findViewById(R.id.lin_layout);
}

protected BroadcastReceiver myReceiver = new BroadcastReceiver()
{
@Override
public void onReceive(Context ctx, Intent intent)
{
String action = intent.getAction();
if ( action.equals("com.mydomain.myapp.INTERESTING_EVENT_OCCURRED"))
{
if (linLayout != null)
{
Log.i(TAG_OK, "OK to proceed with accessing views inside layout");
}
else
Log.e(TAG_FAIL, "What's wrong with calling findViewById inside onReceive()?");
}
}
};

关于android - 嗯? findViewById() 不能在onReceive() 内部调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16390662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com