在項目開發過程中,我們難免會用到自己去製作自訂的VIEW控制項,之後我們別的項目如果需要的話就直接將其複製到對應的項目中使用,雖說這麼做是一個解決問題的方法,但畢竟不是很好。
原因是,當我們項目積累越來越多,會發現自訂的控制項越來越多,而且這些自訂的控制項都是可以重複利用的,這時我們可以想想,如果把這些自訂控制項都封裝成一個JAR包,然後用一個項目積累起來,之後我們以後開發項目只要在原來JAR包的基礎上做擴充或者直接使用,可以大大減少自己的工作重複性。
首先Android 工程的基本面貌是這樣的:
當然對應的Activity 檔案被我刪除了,因為當編譯成jar 包我們並不需要Activity 檔案。
以上面這個工程為例,我們將它打包成JAR包步驟為:
右鍵工程選擇匯出:
選擇匯出目標為:java->JAR檔案:
把一些不必要的檔案勾選掉,如:
到了這一步,己經基本完成,瀏覽選擇jar 檔案匯出路徑即可。
匯出完成後,我們就可以像使用其他JAR檔案一樣使用我們自己的自訂控制項包了。下面給出一個小DEMO介紹如何使用這個JAR包。
步驟一:
建立檔案夾lib,將jar 包放入。
步驟二:
關聯JAR包,如:
步驟三,使用JAR包:
如下代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:gif="http://schemas.android.com/apk/res/com.terry.jarTest"
android:id="@+id/layout" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:text="停止" android:id="@+id/Button01"
android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="開始" android:id="@+id/Button02"
android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<com.terry.gif.TypegifView
android:layout_width="fill_parent" android:id="@+id/gifView1"
gif:stop="true" android:layout_height="wrap_content"
gif:delay="1"></com.terry.gif.TypegifView>
</LinearLayout>
有一個不好的就是如果你項目中存在使用屬性,必須也把屬性一起複製到你要使用的項目中,要不然會識別不了。
原文:http://www.cnblogs.com/terryblog/archive/2011/05/12/2044900.html