Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> android顯示自定義view

android顯示自定義view

編輯:高級開發

自定義vIEw

  public class LogoVIEwandroid extends VIEw{

  // @Override

  public void onDraw(Canvas canvas) {

  //draw some thing

  }

  }

  activity調用

  public class ComicLivePlayerApp extends Activity {

  public Activity activity;

  public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  this.activity = this;

  this.logo();

  }

  public void logo() {

  final AbsoluteLayout layout = new AbsoluteLayout(this);

  final LogoViewAndroid view1 = new LogoVIEwandroid(this);

  layout.addView(vIEw1);

  activity.setContentVIEw(layout);

  }

  }

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved