eclipse 项目导入 Android studio
程序员文章站
2022-05-15 23:39:14
...
- 资源文件导入
将资源文件复制到Android studio中,需改不满足Android studio要求的。
a. 如anmi文件夹下的selector_anmi.xml(标签 <animation-list> )文件,在Android studio中只能放在drawable中
<!--selector_anmi.xml-->
<?xml version="1.0" encoding="utf-8"?>
<animation-list android:oneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="150" android:drawable="@drawable/ss01" />
</animation-list>
-
默认的同名文件,colors.xml、strings.xml、styles.xml导入
-
修复中文乱码,使用Notepad打开拷贝正常的文字过去(数量烧)
-
导入第三方库,
File–>Project Structure–>app–> dependencies–>加号–>Library dependency
搜索
org.apache.http
org.apache.commons.httpclient
com.nostra13.universalimageloader -
修改新版本的库改变了–包名的导入
-
修改因资源文件路径修改引起的问题 R.anim.selector_anmi --> R.drawable.selector_anmi
-
导入jar包
-
删除第三方库不再支持的方法
-
错误: Error: Cannot fit requested classes in a single dex file (# methods: 82270 > 65536)
multiDexEnabled true
10. apk启动就停止运行,使用了 mApplication = (MyApp) getApplication(); 需在manifest中添加
android:name=“com.changhong.doplauncher.MyApp”
11. 直接错误
下一篇: Android xhdpi图片转换,能任意转换Android Drawable下“ldpi“, “mdpi“, “hdpi“, “xhdpi“,“xxhdpi“, “xxxhdpi“ 各个类型的图片
推荐阅读