打印

Android编程第一个例子:HelloWorld

Android编程第一个例子:HelloWorld

第一个例子:HelloWorld.java
samples/ApiDemos/src/com/google/android/samples/app/Original HelloWorld.java
复制内容到剪贴板
代码:
/*
* Copyright (C) 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.google.android.samples.app;

// Need the following import to get access to the app resources, since this
// class is in a sub-package.
import com.google.android.samples.R;

import android.app.Activity;
import android.os.Bundle;


/**
* Simple example of writing an application Activity.
* Hello World</a></h3>

<p>This demonstrates the basic code needed to write a Screen activity.</p>

<h4>Demo</h4>
App/Activity/Hello World

<h4>Source files</h4>
* <table class="LinkTable">
*         <tr>
*             <td >src/com/google/android/samples/app/HelloWorld.java</td>
*             <td >The Hello World Screen implementation</td>
*         </tr>
*         <tr>
*             <td >/res/any/layout/hello_world.xml</td>
*             <td >Defines contents of the screen</td>
*         </tr>
* </table>
*/
public class HelloWorld extends Activity
{
    /**
     * Initialization of the Activity after it is first created.  Must at least
     * call {@link android.app.Activity#setContentView setContentView()} to
     * describe what is to be displayed in the screen.
     */
    @Override
        protected void onCreate(Bundle icicle)
    {
        // Be sure to call the super class.
        super.onCreate(icicle);

        // See assets/res/any/layout/hello_world.xml for this
        // view layout definition, which is being set here as
        // the content of our screen.
        setContentView(R.layout.hello_world);
    }
}
附件: 您所在的用户组无法下载或查看附件

TOP

TOP

顶一个

TOP

好看

好看还好用,我看行

TOP

step by step 我也作了

TOP

为什么我运行的时候有以下错误?

an error has occurred in process com.cn.android.
unable to instantiate activity
ComponentInfo{com.cn.android/com.cn.android.res}:
java.lang.ClassNotFoundException:
        com.cn.android.res in loader
        android.app.applicationLoader$PathClassLoader@40021c28

TOP

我運行錯誤是沒有,不過不顯示這幾個字.就一張圖片

TOP

不错  努力  。。。。。。。。。。。。。。。。。。。。。。。

TOP

寻求android项目加盟者

寻求android项目加盟者
本人是手机创新项目爱好者,想寻求手机输入法者,参加者赋予报酬和分配奖金.我的联系电话02287310540任先生俄email:
jinliren2@eyou.com

TOP

我运行了,出现手机画面,但是没有Helloword的字
[2008-03-08 15:50:21 - HelloAndroid] Android Launch!
[2008-03-08 15:50:21 - HelloAndroid] adb is running normally.
[2008-03-08 15:50:22 - HelloAndroid] Launching: com.android.hello.HelloAndroid
[2008-03-08 15:50:22 - HelloAndroid] Automatic Target Mode: launch emulator.
[2008-03-08 15:50:23 - HelloAndroid] Launching a new emulator.
[2008-03-08 15:51:28 - HelloAndroid] New emulator found: emulator-tcp-5555
[2008-03-08 15:53:33 - HelloAndroid] emulator-tcp-5555 disconnected! Cancelling 'com.android.hello.HelloAndroid' launch!
估计是最后一步出错了

TOP