PS:這篇筆記用於解決Android Studio導入Vitamio框架的問題.官網給出的相關說明過於簡單,故整理這篇文章,但願能幫助到像我同樣遇到這個問題的朋友.
開發學習建議參考農民伯伯的博客中的系列文章,地址:http://www.cnblogs.com/over140/category/409230.htmlhtml
官網地址:https://www.vitamio.org/ (最新版本5.0.0,可是官網很難打開...)
github地址:https://github.com/yixia/VitamioBundle (版本4.2.2)android
其中的vitamio-sample是官方提供的demo,而咱們要導入as的是vitamio.git
打開AS,File -> New -> Import Moudle,選擇剛纔解壓文件夾下的 vitamio 文件.
導入後的文件目錄中會多出vitamin文件夾,以下圖
github
導入後通常會出現這個問題:
解決方案單獨寫在step3中.app
在 dependencies 中添加 compile project(':vitamio') 若是你導入module中更改過名字的話 要改爲修改後的名字 如圖:
框架
再次等待gradle編譯完成,應該就沒有問題了.學習
<activity android:name="io.vov.vitamio.activity.InitActivity" android:configChanges="orientation|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation" android:launchMode="singleTop" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="stateAlwaysHidden" />
注意:這個InitActivity存在於vitamio/src/對應的目錄下,不須要用戶編寫.gradle
至此,vitamio導入完畢.ui