Android开发中的一个简单的问题,求帮忙看下怎么解决?

要创建一个最简单的helloworld安卓应用,把MainActivity.java文件改为如下packagecom.example.helloworld;importa... 要创建一个最简单的helloworld安卓应用,把MainActivity.java文件改为如下
package com.example.helloworld;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class MainActivity extends ActionBarActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

public void clickHandler(View source) { //这一行提示错误View cannot be resolved to a type
// 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.
TextView tv=(TextView)findViewById(R.id.show); //提示错误show cannot be resolved or is not a field
tv.setText("Hello Android="+new java.util.Date());

}

}

怎么回事
展开
 我来答
leewell5717
2014-08-29 · TA获得超过166个赞
知道小有建树答主
回答量:77
采纳率:83%
帮助的人:59.3万
展开全部
①如果只是简单的程序一般继承的是Activity,而不是ActionBarActivity
②如果你的这个clickHandler方法是继承父类的方法,而不是自己写的话,一般要在上面加上@Override。
③一般初始化控件,可以直接写在setContentView(R.layout.activity_main);语句后面;如果要单独写一个方法的话,一般不需要带参数。

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();
}
private void init() {
TextView tv = (TextView)findViewById(R.id.tv);
tv.setText("Text");
}
生活he家
2014-08-29 · 一个属于大家的搬运工
生活he家
采纳数:1536 获赞数:6828

向TA提问 私信TA
展开全部
package com.example.helloworld;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class MainActivity extends ActionBarActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
clickHandler();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

public void clickHandler() { //这一行提示错误View cannot be resolved to a type
// 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.
TextView tv=(TextView)findViewById(R.id.show); //提示错误show cannot be resolved or is not a field
tv.setText("Hello Android="+new java.util.Date());

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式