利用ViewGroup的 indexOfChild 和 getChildAt方法:
以下代码表示获取v的上一个view:
ViewGroup vg = (ViewGroup)v.getParent();
TextView tv = (TextView)vg.getChildAt(vg.indexOfChild(v)-1);
注意:v.getParanet() 返回后必须为ViewGroup类型的view. 如:TableRow. 等等。
详见android 中 View 的结构。
利用ViewGroup的 indexOfChild 和 getChildAt方法:
以下代码表示获取v的上一个view:
ViewGroup vg = (ViewGroup)v.getParent();
TextView tv = (TextView)vg.getChildAt(vg.indexOfChild(v)-1);
注意:v.getParanet() 返回后必须为ViewGroup类型的view. 如:TableRow. 等等。
详见android 中 View 的结构。