首选项中的列表视图

发布于 2024-11-16 14:27:18 字数 431 浏览 4 评论 0原文

我为我的 Android 应用程序 (Honeycomb) 创建了一个自定义首选项屏幕,其中包含一个 ListView。

public class XXXPreferences extends Preference
{
    @Override
    protected View onCreateView(ViewGroup parent)
    {
          ListView...
    }
}

一切都按预期显示,但 ListView 没有滚动。看来是因为 Preference 类内置在 ScrollView 中,而 ListView 不支持嵌入到 ScrollView 中。

所以我想知道是否可以删除 Preference 类的 ScollView 或者是否还有其他技巧可以使事情正常工作!?

预先感谢您的回复:) 干杯

I've created a custon preference screen for my Android application (Honeycomb), that contains a ListView.

public class XXXPreferences extends Preference
{
    @Override
    protected View onCreateView(ViewGroup parent)
    {
          ListView...
    }
}

Everyting is shown as expected, but the ListView is not scrolling. It seems that it is because the Preference class has a build in ScrollView and the ListView does not supported to be embedded in a ScrollView.

So I would like to know if it is possible to remove the ScollView of the Preference class or if there is another trick to make things work !?

Thanks in advance for your response :)
Cheers

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

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

发布评论

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

评论(1

享受孤独 2024-11-23 14:27:19

如果首选项类有滚动视图,则不需要 ListView。只需使用垂直 LinearLayout 并根据需要添加布局即可。

If the preference class has a scrollview, you shouldn't need your ListView. Just use a vertical LinearLayout and add your layouts to that as needed.

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