我已经创建了一个 android 应用程序,它在布局内部有过渡动作,这是布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_register"
android:orientation="vertical"
android:id="@+id/parent_linear_layout" >
<ViewFlipper
android:id="@+id/home_screen_flipper"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include
android:id="@+id/home_screen_index_layout"
layout="@layout/home_screen_index"
/>
<include
android:id="@+id/home_screen_recover_layout"
layout="@layout/home_screen_recover" />
<include
android:id="@+id/home_screen_register_layout"
layout="@layout/home_screen_register" />
</ViewFlipper>
在 thr 中,我使用标签包含了其他相关布局。我已经清楚地进行了开发。
该布局已加载到 HomeScreen.java 活动类中但现在我想在 home_screen_register_layout 中调用按钮操作,但它应该位于不在 HomeScreen.java 中的不同类中是否可以将布局连接到类并检测其中的操作特定的类。
这样做的目的是最小化 HomeScreen.java 类中的代码