Android library版本決定它的高度和寬度導致的位元影像位置出錯問題

來源:互聯網
上載者:User

 

 

我們在自己建立view的時候繼承SurfaceView。然後重寫surfaceCreate方法。如下代碼所示:

[java]
@Override 
    public void surfaceCreated(SurfaceHolder holder) { 
        ScreenW = this.getWidth(); 
        ScreenH = this.getHeight(); 
        bp_x = ScreenW/2-bitmapr.getWidth()/2; 
        bp_y = ScreenH/2-bitmapb.getWidth()/2; 
        thread.start(); 

@Override
 public void surfaceCreated(SurfaceHolder holder) {
  ScreenW = this.getWidth();
  ScreenH = this.getHeight();
  bp_x = ScreenW/2-bitmapr.getWidth()/2;
  bp_y = ScreenH/2-bitmapb.getWidth()/2;
  thread.start();
}

 

說明:


本人按照HIMI部落格寫的來測試登陸介面。但是發現draw的位置並不理想。然後個人debug發現原來this.getWidth和height拿到的值和himi的源碼中不一樣。然後將2份程式很詳細的做了對比。未發現其中不同。

最終發現原來是android 的jar包版本不同造成的

Android 1.5 的版本和2.2版本大有不同

2.2為480*800

1.5為320*480


在繪製介面的時候一定要注意介面的排版按照程式的版本來!素材和演算法也就不同

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.