ActivityGroup 子级中的微调器不起作用

发布于 2024-11-07 22:32:33 字数 675 浏览 5 评论 0原文

我对活动内部的微调器(活动组的子项)有疑问。 当我单击 spinner 时,它没有展开并且出现“强制关闭”窗口 我检查了 Logcat 并捕获了“BadTokenException”,请参见下文:

http:// i227.photobucket.com/albums/dd299/lavender-90/stackflow.jpg

我的 XML:

<Spinner  
    android:id="@+id/aroundSP"  
    android:layout_height="wrap_content"  
    android:prompt="@string/touraround"
    android:layout_width="fill_parent"  
    android:entries="@array/Triparound"
    android:layout_marginTop="250dip" 
    android:layout_marginLeft="4dip"
    style="@style/ContentTitle">
</Spinner>

谢谢大家!

I have a problem with spinner inside activity , that child of Activity group .
when I clicked on spinner , that isn't expanded and "Force Close" window appears
I was checked Logcat and catch "BadTokenException ", see below :

http://i227.photobucket.com/albums/dd299/lavender-90/stackflow.jpg

my XML:

<Spinner  
    android:id="@+id/aroundSP"  
    android:layout_height="wrap_content"  
    android:prompt="@string/touraround"
    android:layout_width="fill_parent"  
    android:entries="@array/Triparound"
    android:layout_marginTop="250dip" 
    android:layout_marginLeft="4dip"
    style="@style/ContentTitle">
</Spinner>

Thanks everyone!

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

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

发布评论

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

评论(2

凑诗 2024-11-14 22:32:33

这很好用。

View viewToLoad = LayoutInflater.from(this.getParent()).inflate(
                    R.layout.marketlist, null);
            this.setContentView(viewToLoad);

this works fine.

View viewToLoad = LayoutInflater.from(this.getParent()).inflate(
                    R.layout.marketlist, null);
            this.setContentView(viewToLoad);
千里故人稀 2024-11-14 22:32:33

如果您在任何地方使用context,那么您必须传递getParent() context,因为您位于活动组的子级中。

If you are using context anywhere then you have to pass getParent() context because you are in a child of activity group.

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