首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

Android平台下的Gphone 图像演示

2012-08-24 
Android平台上的Gphone 图像演示package android_programmers_guide.HelloWorldImageimport android.app.

Android平台上的Gphone 图像演示
package android_programmers_guide.HelloWorldImage;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
public class HelloWorldImage extends Activity {
    /** Called when the activity is first created. */
                                                                   
  @Override
  public void onCreate(Bundle icicle) {
      super.onCreate(icicle);
      /**Hello World Image JFD*/
      /**BEGIN                    */
      /**Create the ImageView */
      ImageView HelloWorldImageView = new ImageView(this);
      /**Set the ImageView to helloworld.png */
      HelloWorldImageView.setImageResource(S.drawable.hello);
      /**Set the ContentView to the ImageView */
      setContentView(HelloWorldImageView);
      /**END                            */
  }
}

热点排行