老师,我这个运行不出来,求助,谢谢

老师,我这个运行不出来,求助,谢谢

package com.vw.view_01;

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

public class MainActivity extends Activity {
	//第一步:定义TextView类(根据XML布局文件中定义的控件类型)
	private TextView textView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //通过findViewById方法获取控件对象(传入的内容为带包控件的id,需要向下转型成控件类型)
        textView = (TextView)findViewById(R.id.textView01);
        System.out.println("*************是否获取成功" + textView);
        textView.setText("hello,imooc");
    }
}
<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="${relativePackage}.${activityClass}" >

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

</RelativeLayout>

帮我看看,谢谢

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
irista23 2017-12-07 17:01:08

你的代码看是没有问题的,运行不起来是没有反应吗?模拟器可以正常显示别的项目吗?

  • 提问者 宝慕林7867458 #1
    提示是说有错误,但是我觉得我代码写的没错,其他的项目可以运行的
    2017-12-07 17:52:59
  • irista23 回复 提问者 宝慕林7867458 #2
    你把提示的错误截图贴上来
    2017-12-07 17:53:58
  • 提问者 宝慕林7867458 回复 irista23 #3
    我弄好了,clean了一下,错误的提示大概就是:“程序中存在错误,修改好之后再运行”。谢谢老师
    2017-12-07 18:18:11
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师