Нелегальный персонаж U+200B андроид
Я буду следовать ссылкам ниже, но мне не помогло:
Всякий раз, когда я добавляю код ниже:
// get our folding cell
final FoldingCell fc = (FoldingCell) findViewById(R.id.folding_cell);
// attach click listener to folding cell
fc.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
fc.toggle(false);
}
});
Эта ошибка приходит: Illegal character U+200B
Ошибка не отображается на Logcat
или же massage
это шоу в MainActivity.class
ниже findviewById
activity_main.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.foldingcell.MainActivity">
<com.ramotion.foldingcell.FoldingCell
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/folding_cell"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:clipToPadding="false"
>
</com.ramotion.foldingcell.FoldingCell>
</LinearLayout>
Я копирую код от слышать: https://android-arsenal.com/details/1/3426
1 ответ
Решение
В третьей строке есть невидимый персонаж. Удалите строку вручную и добавьте ее снова с помощью клавиатуры.
Попробуйте заменить ваш код следующим:
// get our folding cell
final FoldingCell fc = (FoldingCell) findViewById(R.id.folding_cell);
// attach click listener to folding cell
fc.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
fc.toggle(false);
}
});