標籤:android 開源項目 library
以引入.pulltorefresh為例
- 下載zip,解壓到案頭
- 開啟eclipse,File-Import-Existing Android Code Into Workspace
- 選中library檔案,匯入到eclipse中
- 開啟此library,右鍵library,properties-Android-Library-勾選Is Library
- 開啟你的程式後,右鍵你的主程式,properties-Android-Library-Add,選擇library檔案
匯入的基本步驟就這樣,接下來是如何使用
- 找到你的程式-layout-xml添加一個
<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/pull_to_refresh_listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
- 回到MainActivity中,標頭檔中添加一段代碼
import com.handmark.pulltorefresh.library.PullToRefreshListView;
- 之後把你需要用到的listview全部改為PullToRefreshListView,例如
private PullToRefreshListView mPullRefreshListView;
- 接著就像listview一樣使用吧
......................................................................................................................................................................
但是在引入後有可能引入失敗, 綠色的對號變成了紅色的差,原因可能如下:
library與project處於不同的盤符下面,由於windows下 的盤符支援問題 , 不能飲用不同盤符下的library, 將library放在與project同一個目錄下即可解決
android如何將開源項目引入