来源未找到。的TextView

时间:2014-04-09 16:55:29

标签: android xml

我是Java和Android的新手。我想通过setText()更改活动上的文本。 这是一个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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.p0081viewbyid.MainActivity$PlaceholderFragment" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:id="@+id/myText" />

</RelativeLayout>

这是java代码的一部分:

package com.example.p0081viewbyid;

import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class MainActivity extends Activity 
{

    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView myTextView = (TextView)findViewById(R.id.myText);
        myTextView.setText("New text in TextView");//application close on this place

        if (savedInstanceState == null) 
            {
            getFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }
    }
}

此应用程序关闭setText方法,原因是“找不到源”。我的错误在哪里?我试图修改它,例如:

myTextView.setText("New text in TextView".toString());
myTextView.setText(Integer.toString("New text in TextView"))

但我得到同样的错误。

0 个答案:

没有答案