如何在 Android 上获取 ExpandableListView 可绘制的组指示器的宽度?

发布于 2024-10-13 23:11:56 字数 140 浏览 2 评论 0原文

如果我使用默认的组指示器(不设置新的),我如何知道groupview布局的填充宽度?

这样可以让我的布局不会与组指示器重叠。

这可能吗?因为我找不到 getGroupIndicator 的方法。 或者我必须设置一个我知道其大小的新的。

If I use the default group indicator (not setting a new one), how can I know the padding width for the layout of groupview?

So can let my layout won't overlap with the group indicator.

Is that possible? Because I can't find a method to getGroupIndicator.
Or I must have to set a new one that I know its size.

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

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

发布评论

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

评论(2

人间☆小暴躁 2024-10-20 23:11:56

我在这里找到了该属性:

android:paddingLeft="?android:attr/expandableListPreferredItemPaddingLeft"

I found the attribute here:

android:paddingLeft="?android:attr/expandableListPreferredItemPaddingLeft"
别低头,皇冠会掉 2024-10-20 23:11:56

或者你可以使用反射:

Field field_mIndicatorRight = listView.getClass().getDeclaredField("mIndicatorRight");
field_mIndicatorRight.setAccessible(true);
int mIndicatorRight = (Integer) field_mIndicatorRight.get(listView);

Or you can use reflection:

Field field_mIndicatorRight = listView.getClass().getDeclaredField("mIndicatorRight");
field_mIndicatorRight.setAccessible(true);
int mIndicatorRight = (Integer) field_mIndicatorRight.get(listView);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文