如何获取 SlideButton 视图的上一个视图(TextView)和 SlideButton 视图的下一个视图。
id 为“remotelight”的 SlideButton 视图。我可以使用“findViewById”方法获得 SlideButton 视图。所以在我得到 SlideButton View 之后,我怎样才能得到上一个视图和下一个视图,没有“findViewById”方法的帮助。
非常感谢。
下面是布局xml的一部分:
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />
<com.ivn.SlideButton
android:id="@+id/remotelight"
android:layout_width="100dp"
android:layout_height="50dp" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="" />
</TableRow>