我正在创建一个具有两种布局的 Android 应用程序。所有布局都有一些共同特征,例如顶部相同,唯一的区别在于底部。
目前我已经为两个布局创建了两个单独的 java 文件。我只是简单地复制了实现类似按钮等功能的代码
看到的部分是图片是布局的顶部,两种布局都相同;
有什么方法可以通过可重用代码来优化功能
我正在创建一个具有两种布局的 Android 应用程序。所有布局都有一些共同特征,例如顶部相同,唯一的区别在于底部。
目前我已经为两个布局创建了两个单独的 java 文件。我只是简单地复制了实现类似按钮等功能的代码
看到的部分是图片是布局的顶部,两种布局都相同;
有什么方法可以通过可重用代码来优化功能
在我看来,这有助于<include>
在您的主要布局中使用。
步:
您必须为您的通用布局创建一个 XML 文件。
顶栏.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width=”match_parent”
android:layout_height="wrap_content"
android:background="@color/titlebar_bg">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/gafricalogo" />
</FrameLayout>
像这样,现在您必须将此 XML 文件包含到您需要的位置。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal">
<include layout="@layout/topbar"/>
...
</LinearLayout>
我认为这个标签栏也可以用于这个..
以下是完整教程的链接...