Android 中文 API (90) —— WindowManager

來源:互聯網
上載者:User

 

前言

  本章內容是android.view.WindowManager,版本為Android 2.3 r1,翻譯來自"逝憶流緣",歡迎大家訪問他的部落格:http://t.qq.com/pansonphy,再次感謝"逝憶流緣" !期待你加入Android 中文翻譯組,聯絡我over140@gmail.com。

 

聲明

  歡迎轉載,但請保留文章原始出處:)

    部落格園:http://www.cnblogs.com/

    Android中文翻譯組:http://goo.gl/6vJQl

 

本文

  一、結構

public interface WindowManager extends android.view.ViewManager

        

android.view.WindowManager

 

  二、概述

  該介面用於與視窗管理器互動。通過 Context.getSystemService(Context.WINDOW_SERVICE)可以擷取到WindowManager的執行個體。(譯者註:如:WindowManager wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);)

   參見

            getSystemService(String)

      WINDOW_SERVICE

 

  三、內部類

 

  public static class WindowManager.LayoutParams

    (譯者註:繼承自android.view.ViewGroup.LayoutParams)

 

    public static class  WindowManager.BadTokenException       

    添加view時,如果該view的WindowManager.LayoutParams的令牌(token)無效,則會拋出該異常

 

  四、公用方法

  public abstract Display getDefaultDisplay()

           擷取預設的顯示對象

                   傳回值

                            預設的Display對象

                  

  public abstract void removeViewImmediate (View view)

  是removeView(View) 的一個特殊擴充,在方法返回前能夠立即調用該視圖層次的View.onDetachedFromWindow() 方法。 不適用於一般的程式;如果您要正確無誤的使用它,那您就需要格外小心了。

  參數

                   view 需要移除的視圖

 

  五、補充

  文章連結

      WindowManagerDemo

    範例程式碼(來自文章連結的代碼)public class WindowManagerDemo extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView textView = (TextView) findViewById(R.id.label);
        WindowManager windowManager = (WindowManager) 
        getSystemService(Context.WINDOW_SERVICE);
 
        // print the current window's width and height on the title, eg: 320*480
    setTitle(windowManager.getDefaultDisplay().getWidth() + "*"
                + windowManager.getDefaultDisplay().getHeight());
        textView.setText("See the Title");
    }
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.