TextView上不显示土耳其语字符

时间:2015-05-18 17:04:09

标签: android utf-8 textview

土耳其字符未显示在TextView上。我已经阅读了以前的问题并做了一些修改,但我们的问题并没有解决。这是图片:

enter image description here

以下是我更改的代码:

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);

2 个答案:

答案 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