真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中怎么設(shè)置屏幕大小

本篇文章為大家展示了Android中怎么設(shè)置屏幕大小,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供網(wǎng)站制作、成都做網(wǎng)站服務(wù),網(wǎng)站設(shè)計(jì),網(wǎng)站托管等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競爭對(duì)手中脫穎而出成都創(chuàng)新互聯(lián)公司。

默認(rèn)情況下,當(dāng)屏幕方面切換時(shí),activity的onCreate()方法會(huì)被重新調(diào)用,所以可以在其中通過以下代碼來讀取屏的方向:

  1. view plaincopy to clipboardprint?  

  2. public void onCreate() {   

  3. if(this.getResources().getConfiguration()
    .orientation == Configuration.ORIENTATION_LANDSCAPE) {   

  4. Log.i("info", "landscape");   

  5. } else if (this.getResources().getConfiguration()
    .orientation == Configuration.ORIENTATION_PORTRAIT) {   

  6. Log.i("info", "portrait");   

  7. }   

  8. }   

  9. public void onCreate() {  

  10. if(this.getResources().getConfiguration()
    .orientation == Configuration.ORIENTATION_LANDSCAPE) {  

  11. Log.i("info", "landscape");  

  12. } else if (this.getResources().getConfiguration()
    .orientation == Configuration.ORIENTATION_PORTRAIT) {  

  13. Log.i("info", "portrait");  

  14. }  

如果在androidmanifest.xml中加入配置

android:configChanges="orientation|keyboardHidden|navigation

當(dāng)屏幕翻轉(zhuǎn)時(shí),Activity就不會(huì)重復(fù)的調(diào)用onCreate()、onPause()和onResume().

而是調(diào)用onConfigurationChanged(Configuration newConfig)

如何取得Android屏幕大?。?/p>

view plaincopy to clipboardprint?  int screenWidth,screenHeight;   WindowManager windowManager = getWindowManager();   Display display = windowManager.getDefaultDisplay();   screenWidth = display.getWidth();   screenHeight = display.getHeight();   int screenWidth,screenHeight;  WindowManager windowManager = getWindowManager();  Display display = windowManager.getDefaultDisplay();  screenWidth = display.getWidth();  screenHeight = display.getHeight();

也有人提到另一種Android屏幕大小的更改方法:

view plaincopy to clipboardprint?  DisplayMetrics dm = new DisplayMetrics();   getWindowManager().getDefaultDisplay().getMetrics(dm);   int screenWidth = dm.widthPixels;   int screenHeight = dm.heightPixels;

上述內(nèi)容就是Android中怎么設(shè)置屏幕大小,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


標(biāo)題名稱:Android中怎么設(shè)置屏幕大小
標(biāo)題路徑:http://weahome.cn/article/pdppih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部