1 / 14

MTSTCP Group3

MTSTCP Group3. 20110906. 解決方法. 先把頭尾訊息都去掉 requestWindowFeature(Window. FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN, // 去掉頭尾的訊息 一定要在 setContentView 前寫入 WindowManager.LayoutParams. FLAG_FULLSCREEN); setContentView(R.layout. start);

overton
Download Presentation

MTSTCP Group3

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MTSTCPGroup3 20110906

  2. 解決方法 • 先把頭尾訊息都去掉 requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, //去掉頭尾的訊息 一定要在setContentView前寫入 WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.start); • 寫一個Class去 Extend 原本的VideoView • 改掉原本的<VideoView>標籤名稱改成(package名稱)irdc.ex07_17. MyVideoView

  3. Vdieoview class public class MyVideoView extends VideoView { public MyVideoView(Context context) { super(context); // TODO Auto-generated constructor stub } public MyVideoView(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public MyVideoView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub } //重點就在此 , 覆寫這個 onMeasure 就可以滿板了 : ) @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int width = getDefaultSize( 0, widthMeasureSpec); int height = getDefaultSize( 0 , heightMeasureSpec); setMeasuredDimension(width , height); } }

  4. 改掉Label • <?xml version="1.0" encoding="utf-8"?> • <LinearLayout • xmlns:android="http://schemas.android.com/apk/res/android" • android:layout_width="fill_parent" • android:layout_height="fill_parent" android:orientation="horizontal"> • <irdc.ex07_17.MyVideoView android:id="@+id/irdc.ex07_17.MyVideoView" android:layout_height="fill_parent" android:layout_width="fill_parent"></irdc.ex07_17.MyVideoView> • </LinearLayout>

  5. Google Map

  6. 戰術板 20110926

  7. 錄製工作分配 • 王之洵 • 三角進攻(Triangle offense) • 四角進攻(Four corners offense) • (Continuity offense) • (Flex offense) • 擋拆(Pick and roll) • 1-3-1區域聯防(1-3-1 zone defense) • 2-3區域聯防(2-3 zone defense)

  8. 錄製工作分配 • 沈冠宇 • 跑轟(Run and gun) • (Pick and pop) • 大角傳球(coast-to-coast pass) • 全場壓迫(Full-court press) • (Box-and-one defense) • 盯人防守(Man-to-man defense) • (Match-up zone defense)

  9. 錄製工作分配 • 鄭凱元 • 動態進攻(Motion offense) • 普林斯頓戰術(Princeton offense) • 換位進攻(Shuffle offense) • 小球(Small Ball) • 背後掩護(BackScreen) • 向上掩護(Up Screen) • 向下掩護(Down Screen)

  10. "Triangle" Offense vs. 3-2 or 1-2-2 Zone Defense • http://www.youtube.com/watch?v=11d5mbWEi84

  11. 紀錄表 20110926

  12. 動態進攻(Motion offense) • http://www.youtube.com/watch?v=lL8yecXVuQ8

  13. 紀錄表-進度

More Related