`

android -> 父控件 遍历 子 控件

 
阅读更多

 

布局文件: 

<LinearLayout android:id="@+id/candi_more_row1"
	android:orientation="horizontal"
	android:gravity="center_vertical"
	android:layout_width="match_parent"
	android:layout_weight="1"
	android:layout_height="match_parent">
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
	<Button
		android:onClick="onClick"
		android:textSize="@dimen/candi_box_btn_font_size"
		android:id="@+id/candi_more_row1_1"
		android:tag="panelCandiBtn_1"
		android:text="水电"
		android:textColor="#474747"
		android:background="@drawable/keyb_none_bg"
		android:layout_weight="1"
		android:layout_width="match_parent"
		android:layout_height="match_parent" />
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
	<Button
		android:onClick="onClick"
		android:textSize="@dimen/candi_box_btn_font_size"
		android:id="@+id/candi_more_row1_2"
		android:tag="panelCandiBtn_2"
		android:text="水电"
		android:textColor="#474747"
		android:background="@drawable/keyb_none_bg"
		android:layout_weight="1"
		android:layout_width="match_parent"
		android:layout_height="match_parent" />
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
	<Button
		android:onClick="onClick"
		android:textSize="@dimen/candi_box_btn_font_size"
		android:id="@+id/candi_more_row1_3"
		android:tag="panelCandiBtn_3"
		android:text="水电"
		android:textColor="#474747"
		android:background="@drawable/keyb_none_bg"
		android:layout_weight="1"
		android:layout_width="match_parent"
		android:layout_height="match_parent" />
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
	<Button
		android:onClick="onClick"
		android:textSize="@dimen/candi_box_btn_font_size"
		android:id="@+id/candi_more_row1_4"
		android:tag="panelCandiBtn_4"
		android:text="水电"
		android:textColor="#474747"
		android:background="@drawable/keyb_none_bg"
		android:layout_weight="1"
		android:layout_width="match_parent"
		android:layout_height="match_parent" />
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
	<Button
		android:onClick="onClick"
		android:textSize="@dimen/candi_box_btn_font_size"
		android:id="@+id/candi_more_row1_5"
		android:tag="panelCandiBtn_5"
		android:text="水电"
		android:textColor="#474747"
		android:background="@drawable/keyb_none_bg"
		android:layout_weight="1"
		android:layout_width="match_parent"
		android:layout_height="match_parent" />
	<View
		android:layout_marginTop="5dip"
		android:layout_marginBottom="5dip"
		android:background="#BDBDBD"
		android:layout_width="1px"
		android:layout_height="match_parent"/>
</LinearLayout>

 

 

JAVA

LinearLayout lt = (LinearLayout)keyboard_view_zh.findViewById(R.id.candi_more_row1);
for (int i = 0;i < lt.getChildCount(); i++){
	if (lt.getChildAt(i) instanceof Button) { // 若是Button记录下
		Button tb = (Button)lt.getChildAt(i);
		tb.setText("L:"+i);
	}
}

 

 

 

 

 

 

 

 

分享到:
评论

相关推荐

    动态添加控件--星级评分控件

    在这个场景中,我们关注的是“动态添加控件--星级评分控件”。星级评分控件(RatingBar)是Android UI库中的一个组件,常用于让用户对某一内容或服务进行评价,通常表现为一串可选的星星,用户可以通过点击或滑动来...

    android用遍历的方法对界面中控件设置字体样式

    2. **遍历控件**:使用递归的方式遍历整个视图树。对于每个View,我们检查它的类型。如果是TextView(显示文本的控件),我们就设置字体样式;如果是ViewGroup,我们就继续遍历其子视图。 ```java public void ...

    Android-FamilyTreeView家谱树绘制Demo

    总的来说,"Android-FamilyTreeView家谱树绘制Demo"涵盖的知识点包括但不限于:自定义Android控件、图形绘制、数据结构(树)、适配器模式、触摸事件处理、动画效果实现以及Git版本控制。这些都是Android开发中的...

    Android-FileChooser一个Android文件(路径)选择器超简单配置

    &lt;uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /&gt; ``` 2. 对于Android 6.0及以上版本,需要在运行时请求权限: ```java if (ContextCompat.checkSelfPermission(this, Manifest....

    android无限级树形控件

    标题“android无限级树形控件”指的是该控件可以支持任意深度的嵌套,即节点可以有无限级别的子节点。下面我们将详细探讨如何在Android中实现无限级树形控件及其相关知识点。 1. **自定义View**: Android原生并没有...

    多标签自动换行的控件ViewGroup

    1. **测量子视图**:在`onMeasure()`方法中,我们需要遍历所有子视图,分别测量它们的大小。每个标签通常是一个`TextView`,可以使用`measureChild()`方法进行测量。记录下每个子视图的测量宽度总和,以及当前行的...

    Android 流程步骤控件

    在Android开发中,流程步骤控件是一种常用的UI组件,它能清晰地展示用户操作的步骤序列,特别是在涉及多步骤的提交或验证过程中。本篇文章将深入探讨如何在Android中实现这样的控件,以及其在实际应用中的设计和使用...

    Android 自定义流式标签控件

    例如,可以使用ArrayList&lt;String&gt;存储标签文本,然后在代码中遍历这个列表,为每个标签创建一个View实例,添加到我们的自定义流式标签控件中。 此外,为了增加交互性,我们还可以实现点击事件监听。通过设置...

    Android 自定义自动换行布局控件

    在Android开发中,自定义布局控件是一种常见的需求,它能帮助我们实现更灵活、更具个性化的界面设计。本文将详细讲解如何创建一个名为`LinearLayoutAutoSwapRow`的自定义布局控件,它具备自动换行的功能,适用于展示...

    Android 任意层别 树形控件

    在Android开发中,有时我们需要展示层次结构的数据,这时树形控件就显得尤为重要。本文将深入探讨如何在Android中实现一个“任意层别”的树形控件,通过提供的链接资源和示例代码来阐述相关技术点。 首先,我们来看...

    Android 任意层级 树形控件

    在Android开发中,树形控件(Tree View)是一种常用的数据展示方式,它能够以层级结构展示信息,常用于文件系统、目录结构或者组织结构等场景。然而,Android SDK并没有提供内置的树形控件,因此开发者需要自定义...

    Android树形控件源码.zip

    - 树形控件是UI设计中的一种数据展示方式,它以层级结构展现信息,通常包括节点、子节点、父节点的概念。 - 在Android原生API中并没有内置的树形控件,因此开发者通常需要通过自定义View或者使用第三方库来实现。 ...

    Android-LineWrapLayout:子控件根据父控件行宽自动换行的Layout

    接着,`LineWrapLayout`会遍历这些子视图,计算当前行的总宽度,一旦超过父视图的可用宽度,就会开始新的一行。 2. **换行逻辑**:`LineWrapLayout`使用一个变量跟踪当前行的宽度,并在每次添加新子视图时更新这个...

    Android中Touch事件的传递

    而事件的处理顺序则与传递顺序相反,具体描述为:触点位置上的View -&gt; 该View的父视图(通常是ViewGroup) -&gt; PhoneWindow的DecorView。在Activity.java中,dispatchTouchEvent方法定义了这个处理流程: ```java ...

    Android-RegionDetector一个支持灵活设置的不规则区域检测控件

    在Android应用开发中,我们经常会遇到需要实现特定区域交互的需求,比如地图上的兴趣点选择、游戏中的可操作区域等。`RegionDetector`控件就是针对这类需求设计的,它允许开发者定义不规则形状的检测区域,并能灵活...

    Android自动换行标签控件LineBreakLayout

    在`onMeasure()`中,控件会遍历所有子视图,测量每个子视图的宽度,并记录总宽度和当前行的宽度。当当前行的宽度超过容器的宽度时,它会在新的一行开始新的标签。`onLayout()`方法则负责将子视图按照计算好的位置...

    安卓树形控件相关-android实现简单的多选结构树勾选父节点全选子节点等功能可以根据自己需要修改.rar

    在这个“安卓树形控件相关-android实现简单的多选结构树勾选父节点全选子节点等功能可以根据自己需要修改”的项目中,开发者提供了一个实现多选功能的树形控件,支持勾选父节点时全选子节点的功能,方便用户快速操作...

    Android文件管理树控件

    "Android文件管理树控件"就是一种专门用于展示文件系统层级结构的UI组件,它能够以树形结构清晰地展示目录和文件,使得用户可以方便地浏览、选择和操作文件。下面将详细介绍这种控件的原理、实现方式以及相关的知识...

    android 9宫格

    -- 以此类推,添加其他8个格子 --&gt; &lt;/GridLayout&gt; ``` 在上面的XML布局中,我们设置了GridLayout的列数(columnCount)为3,行数(rowCount)为3,这样就形成了9个小格子。每个ImageView或Button代表一个宫格,通过...

    Android-Android复杂红包雨实现带点击事件处理

    在Android开发中,实现一个复杂的红包雨效果是一个挑战性的任务,尤其当涉及到用户交互和事件处理时。这个项目,"Android复杂红包雨实现带点击事件处理",旨在提供一种实现方式,让红包从屏幕顶部随机落下,并且允许...

Global site tag (gtag.js) - Google Analytics