radioButtons = new RadioButton[rgMain.getChildCount()]; //遍历RadioGroupfor (int i = 0; i < radioButtons.length; i++) { radioButtons[i] = (RadioButton) ...
分类:
其他好文 时间:
2018-01-21 19:20:50
阅读次数:
210
如何判断一个物体下是否有子物体?getchild(0)!=null?显然不可取 那去获取拿到子物体数量?transform.GetChildCount();可以解决 但在新版本中已被弃用,可用transform.childCount来直接获取子物体数量。 ...
分类:
其他好文 时间:
2017-07-07 14:22:01
阅读次数:
254
private void selectTab(int position) { // TODO Auto-generated method stub for (int i = 0; i < hori_lin.getChildCount(); i++) { TextView childAt = (Tex
分类:
其他好文 时间:
2016-03-21 09:17:36
阅读次数:
180
一,添加 case R.id.imgBtnAdd:/*添加列表*/
if(SetTempListView.getChildCount()>5){
Toast.makeText(getApplicationContext(), "列表只能添加6条!", Toast.LENGTH_SHORT).show();
break;
}
lis...
分类:
移动开发 时间:
2015-10-28 19:28:18
阅读次数:
313
// 隐藏缩放控件 int childCount = mMapView.getChildCount(); View zoom = null; for (int i = 0; i < childCount;...
分类:
移动开发 时间:
2015-09-21 11:53:18
阅读次数:
209
istView.getCount()(实际上是 AdapterView.getCount()) 返回的是其 Adapter.getCount() 返回的值。也就是“所包含的 Item 总个数”。 ListView.getChildCount()(ViewGroup.getChildCount) 返....
分类:
移动开发 时间:
2015-09-02 13:16:12
阅读次数:
223
ListView.getCount() 返回的所包含的item总个数ListView.getChildCount() (ViewGroup.getChildCount()) 返回的是现实层面上所包含的子View个数。二者的区别:当listView 中 item 比较少,不需要滚动就可以现实全部 二者...
分类:
其他好文 时间:
2015-08-27 22:40:56
阅读次数:
133
自定义ViewGroup控件(一)----->流式布局进阶(一)...
分类:
其他好文 时间:
2015-08-10 13:41:15
阅读次数:
143
mPager.setOnPageChangeListener(newOnPageChangeListener()
{
@Override
publicvoidonPageSelected(intarg0){
//TODOAuto-generatedmethodstub
for(inti=0;i<mDotsLayout.getChildCount();i++){
if(i==arg0){
mDotsLayout.getChildAt(i).setSelected(true);
}else{
mDotsL..
分类:
其他好文 时间:
2015-08-05 22:39:03
阅读次数:
1259
mMapView = (MapView)findViewById(R.id.mapView);
mMapView.showScaleControl(false);
int count = mMapView.getChildCount();
for (int i = 0; i < count; i++) {
View child = mMapView.getChildAt(i);
...
分类:
其他好文 时间:
2015-06-19 16:51:51
阅读次数:
285