天天看點

Android Studio 導入 Eclipse 的代碼後,運作時中文顯示亂碼

本論壇将全面搬家到:http://www.cnblogs.com/91program,請大家以後來這裡看看。

Android Studio 導入 Eclipse 的代碼後,先是編輯框中中文顯示亂碼。

使用 http://blog.csdn.net/91program/article/details/48156555 中的方法修改設定後顯示不再亂碼。但運作後,程式中的中文又出現亂碼的情況。

在 CSDN 的Andorid 論壇中提問,沒有得到想要的答案。見文章:http://bbs.csdn.net/topics/391818489。最後,還是在網上查找到解決方法,如下:

[html]  view plain  copy

  1. apply plugin: 'android'  
  2. dependencies {  
  3.     compile fileTree(dir: 'libs', include: '*.jar')  
  4.     compile project(':appcompat_v7')  
  5. }  
  6. android {  
  7.     compileSdkVersion 10  
  8.     buildToolsVersion "20.0.0"  
  9.     android {compileOptions.encoding = "GBK"}               <strong>/增加的内容,可以解決部署到裝置上漢字顯示亂碼的問題</strong>  
  10.     compileOptions {  
  11.         sourceCompatibility JavaVersion.VERSION_1_7  
  12.         targetCompatibility JavaVersion.VERSION_1_7  
  13.     }  
  14.     sourceSets {  
  15.         main {  
  16.             manifest.srcFile 'AndroidManifest.xml'  
  17.             java.srcDirs = ['src']  
  18.             resources.srcDirs = ['src']  
  19.             aidl.srcDirs = ['src']  
  20.             renderscript.srcDirs = ['src']  
  21.             res.srcDirs = ['res']  
  22.             assets.srcDirs = ['assets']  
  23.         }  
  24.         // Move the tests to tests/java, tests/res, etc...  
  25.         instrumentTest.setRoot('tests')  
  26.         // Move the build types to build-types/<type>  
  27.         // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...  
  28.         // This moves them out of them default location under src/<type>/... which would  
  29.         // conflict with src/ being used by the main source set.  
  30.         // Adding new build types or product flavors should be accompanied  
  31.         // by a similar customization.  
  32.         debug.setRoot('build-types/debug')  
  33.         release.setRoot('build-types/release')  
  34.     }  
  35. }