For some reason, after recovering my project, I get an illegal character error, but nothing inside my code is underlined in red. Can someone please tell me what is wrong and how to solve it?
Mistake
illegal character: \8204
WCBankActivity.java
import android.content.Intent; import android.os.Bundle; import android.support.v4.app.FragmentTransaction; import android.support.v7.app.ActionBarActivity; public class WCBankActivity extends ActionBarActivity { public final static String EXTRA_MESSAGE = "Station_key"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fragment_wc_bank); if (savedInstanceState == null) { Intent intent = getIntent(); String station = intent.getStringExtra(WCBankActivity.EXTRA_MESSAGE); FragmentWCBank newFragment = new FragmentWCBank(); FragmentTransaction transaction = this.getSupportFragmentManager().beginTransaction(); transaction.replace(R.id.detail_container, newFragment); transaction.commit(); } } }

java android android-intent android-studio android-fragments
MacaronLover
source share