从选项卡活动中获取选项卡(父级)视图

发布于 2024-12-04 18:58:23 字数 242 浏览 0 评论 0原文

我想从选项卡主机内的活动访问在选项卡活动中设置的标题栏。我用什么来称呼家长?到目前为止,我有这个,但它不起作用:

    View v = (View) getParent().getTitle();
    TextView title = (TextView)v.findViewById(R.id.TitleLabel);
    title.setText("Custom Title Text Here");

I am wanting to access the titlebar that was setup in my tab activity from an activity that is within the tabhost. What do I use to call the parent? So far, I have this, but it does not work:

    View v = (View) getParent().getTitle();
    TextView title = (TextView)v.findViewById(R.id.TitleLabel);
    title.setText("Custom Title Text Here");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

·深蓝 2024-12-11 18:58:23

我所要做的就是在父活动中引用 TextView:

    TextView title = ParentActivity.title;
    title.setText("Custom Title");

当然,在父活动中将 TextView 设置为公共静态。

All I had to do was reference the TextView within the parentActivity:

    TextView title = ParentActivity.title;
    title.setText("Custom Title");

And of course, set the TextView to public static in the parent activity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文