目前,我有一个名为 CustomizedGallery 的类,它扩展了默认图库。我将它包含在我的 XML 布局文件中,如下所示:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_marginLeft="80px"
android:layout_marginTop="0px"
android:layout_width="869px"
android:layout_height="605px"
android:background="#000000"
android:orientation="horizontal" >
<com.my.path.here.CustomizedGallery
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="864px"
android:layout_height="600px"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:id="@+id/gallery" />
</RelativeLayout>
问题是,每次我更改我的包名(com.my.path.here)时,我都必须手动编辑 XML(因为它们不会作为 .java 文件更新)。有没有一种方法可以将我的自定义库类包含在 XML 中,例如我不需要每次在使用我的自定义类的 XML 中编辑包名称?
PS:你可能想知道为什么我这么频繁地更改包名称。原因是因为我为同一个客户端构建了非常相似的应用程序,所以我每次都需要更改包名称,以便可以将稍微修改的应用程序安装在同一设备上。
先感谢您!