棒棒糖版本右侧未显示可展开列表视图的默认图标指示器

时间:2015-09-12 08:02:38

标签: android icons expandablelistview indicator

使用可扩展的listView开发应用程序。我使用以下代码

在右侧制作了默认的展开/折叠图标指示器
explvList.setIndicatorBounds(width-GetDipsFromPixel(35), width-GetDipsFromPixel(5)); 
Here width means device width. 

Convert pixel to dip  
public int GetDipsFromPixel(float pixels)
{ 
    // Get the screen's density scale 
    final float scale = getResources().getDisplayMetrics().density;
    // Convert the dps to pixels, based on density scale 
    return (int) (pixels * scale + 0.5f);
}  

我在如上所示的软糖版本中得到了正确的设计, enter image description here

但是当我转向棒棒糖版本时,指示器在左侧显示为正常,enter image description here

我该如何解决这个问题?有什么建议吗?

0 个答案:

没有答案