私はAndroid http://developer.Android.com/index.html で学習していますが、到達したら http://developer.Android .com/training/basics/firstapp/starting-activity.html メッセージセクションを表示、ポイント6エラーがあります
Android.support.v7.widget.AppCompatTextView cannot be cast to Android.widget.RelativeLayout
チュートリアルのように、すべてを段階的に行いました。なぜ機能しないのですか?
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>
必要なのは、IDを相対レイアウトに割り当てることです。
<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>
その後、アクティビティにわずかな変更を加えます
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);
原因は、TextViewのidでRelativeLayoutを定義しているためです。
割当
Android:id="@+id/content"
RelativeLayout
に。 XMLでTextView
にしない
レイアウトをこれに変更すると、idコンテンツはTextViewではなくRelativeLayoutに移動します。
<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>