我这是怎么错了???刚刚开始接触android
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我这是怎么错了???刚刚开始接触android相关的知识,希望对你有一定的参考价值。
package com.example.androidhb;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.view.View;
@SuppressLint("WrongCall")
public class MyView extends View
Paint paint=new Paint();
public MyView(Context context)
super(context);
// TODO Auto-generated constructor stub
paint.setColor(Color.GREEN);
paint.setTextSize(20);
paint.setAntiAlias(true);
protected void onDrwa(Canvas canvas)
super.onDraw(canvas);
canvas.drawColor(Color.WHITE);
canvas.drawRect(10, 10,110,110,paint);
canvas.drawText("郑冲你是傻逼", 60, 120, paint);
package com.example.androidhb;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_main);
MyView myview=new MyView(this);
this.setContentView(myview);
@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;
@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();
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
就是在模拟机上没有显示画布上的内容
怎么错了??我是这两天才开始接触android
追答Draw。。。。。。。。。。。。。。。。。。
参考技术B onDrwa写错了,是onDraw随笔看法
刚刚接触编译原理,一开始很多东西都不懂不了解,上网找了很多关于编译原理的资料,知道了许多关于这方面的知识,觉得这是一门挺有意思的学科,但是还有很多要学的地方,我希望自己能好好学习这么课,编译原理这门课我刚刚接触,对于这门课我了解的不多,对于这门课程的东西我也不能很好的说出自己想法和看法,我觉得这门课有多东西是要自己理解和学习的,我希望我能好好学习这门课,以后可以在这里分享自己的看法和自己的心得。
以上是关于我这是怎么错了???刚刚开始接触android的主要内容,如果未能解决你的问题,请参考以下文章