2013-07-01 37 views
0

我有一個ListView項目使用android studio的問題。Android Studio編碼項目的列表視圖

this.setTitle("é ç è "); 

ArrayList<String> Array = new ArrayList<String>(); 
Array.add("é ç è"); 
Array.add("à de"); 
Array.add("chére"); 
List = (ListView)findViewById(R.id.LV_List); 
LV_List.setAdapter(new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_activated_1,Array)); 

它不能被編碼爲ListView的項目!

尋找screeshot http://hpics.li/48fe3c0

信息: - 使用相同的代碼,I'had沒有這個問題在Eclipse - 我的Android Studio版本:http://img15.hostingpics.net/pics/818235Capture.png

回答

0

嘗試在的build.gradle添加此

tasks.withType(Compile) { 
options.encoding = "UTF-8" 
} 
相關問題