J'apprends Android avec http://developer.Android.com/index.html , mais quand j'atteins http://developer.Android .com/training/basics/firstapp/starting-activity.html Afficher la section Message, point 6 J'ai une erreur
Android.support.v7.widget.AppCompatTextView cannot be cast to Android.widget.RelativeLayout
J'ai tout fait étape par étape comme dans le tutoriel. Alors pourquoi ça ne marche pas?
DisplayMessageActivity.Java
package com.example.flover.hellloworld;
import Android.content.Intent;
import Android.os.Bundle;
import Android.support.v7.app.AppCompatActivity;
import Android.view.Menu;
import Android.view.MenuItem;
import Android.widget.RelativeLayout;
import Android.widget.TextView;
public class DisplayMessageActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
Intent intent = getIntent();
String message = intent.getStringExtra(MyActivity.EXTRA_MESSAGE);
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);
layout.addView(textView);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_display_message, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
activity_display_message.xml
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
tools:context="com.example.flover.hellloworld.DisplayMessageActivity">
<TextView
Android:id="@+id/content"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
></TextView>
</RelativeLayout>
Tout ce que vous avez à faire est d'attribuer un identifiant à une disposition relative, il devrait être comme
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/rl_Container"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<TextView
Android:id="@+id/content"
Android:layout_width="match_parent"
Android:layout_height="match_parent"></TextView>
</RelativeLayout>
puis modifiez légèrement votre activité
public class DisplayMessageActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
Intent intent = getIntent();
String message = intent.getStringExtra(MyActivity.EXTRA_MESSAGE);
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
RelativeLayout layout = (RelativeLayout) findViewById(R.id.rl_Container);
layout.addView(textView);
}
}
RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);
car vous définissez RelativeLayout avec l'ID de TextView.
Attribuer
Android:id="@+id/content"
à RelativeLayout
. Pas à TextView
en XML
Modifiez votre mise en page pour cela, le contenu de l'ID doit aller à RelativeLayout et non TextView.
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:id="@+id/content"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
tools:context="com.example.flover.hellloworld.DisplayMessageActivity">
<TextView
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"/>
</RelativeLayout>