标签:android style color io ar for strong sp on
一,View localView = mRadioGroup_content.getChildAt(i);指定自定义菜单栏的点击格,如child3
其中:mRadioGroup_content = (LinearLayout) findViewById(R.id.mRadioGroup_content);
学习:
ListView.getCount() 返回的所包含的item总个数
ListView.getChildCount() (ViewGroup.getChildCount()) 返回的是现实层面上所包含的子View个数。
二者的区别:
当listView 中 item 比较少,不需要滚动就可以现实全部 二者是等价的。
当item个数多 要滚动时 getChildCount()是当前可见的item个数 getCount()是全部。
getChildAt(0)只能获得当前能看到的item的第一个!并不完全是所有在List中的第一个
标签:android style color io ar for strong sp on
原文地址:http://www.cnblogs.com/manmanlu/p/4045384.html