土耳其字符未显示在TextView
上。我已经阅读了以前的问题并做了一些修改,但我们的问题并没有解决。这是图片:
以下是我更改的代码:
holder.txtGazeteName.setText(Html.fromHtml(gazetelerArrayList.get(position).getName()).toString());
这里是ArrayList的输入
gazete = new GazetelerClass();
gazete.setName("YeniŞafak");
gazete.setAdress("http://www.yenisafak.com.tr/yazarlar/");
gazete.setImage(R.drawable.yenisafak);
gazetelerArrayList.add(gazete);
答案 0 :(得分:1)
我解决了我的问题。这是解决方案:
build.gradle(module:app)中的添加了以下代码:
compileOptions.encoding = 'windows-1254'
这里是构建gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
compileOptions.encoding = 'windows-1254'
defaultConfig {
applicationId "yazlm.beyaz.keyazarlar"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
}
答案 1 :(得分:0)
我认为这个线程应该为你做的伎俩。我记得有类似的问题。 Android. WebView and loadData