Just by adding a very simple help action (it simply displays a block of HTML text from the resource file) into a very simple test application in this new phantom platform Android Studio 0.8.6, and I get the following warning, without explaining the reasons / excuses:

Does anyone know why?
There is also some kind of documentation, since Android Studio does not offer a single one and cannot find anything specific on the Android site.
If there is an excuse for warning, can someone please point me to a complete example, since a class like it is almost completely general / to most examples, for example,
public class HelpActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_help); ActionBar actionBar = getActionBar(); actionBar.setTitle(getString(R.string.action_help)); TextView helpText = (TextView) findViewById(R.id.help_text); helpText.setText(Html.fromHtml(getString(R.string.help_markup))); } }
source share