android中將自己的自訂群組件打成JAR包

來源:互聯網
上載者:User

在項目開發過程中,我們難免會用到自己去製作自訂的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
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.