2013-05-27 120 views
0

我正在開發和應用它可以在1280 * 800和480 * 320上正常工作,但在擠壓imageview和其他小部件的其他設備中工作不正常。請幫助我如何使它成爲Android手機的通用應用程序。Android手機的通用應用程序?

+1

你應該閱讀這些鏈接http://developer.android.com/guide/practices/screens_support.html和這個http://developer.android.com/training/multiscreen/screensizes.html –

回答

0

首先您的應用程序設計爲一個決議。

例子:假設你的手機分辨率380 * 480

mobile screen width:380 

    textView size is 80dp 
    Assume : if width is 380dp then 100 % then 

      textview width 80dp then how many %(per). 

     ower answer is: 25 % 

發現屏幕尺寸以編程方式使用belove公式

這是一個例子,你可以設置動態的高度和寬度佈局

int width=0,height=0,left=0,right=0,top=0,bottom=0; 
DisplayMetrics displaymetrics = new DisplayMetrics(); 
      getWindowManager().getDefaultDisplay().getMetrics(displaymetrics); 
     int ScreenHeight = displaymetrics.heightPixels; 
      int ScreenWidth = displaymetrics.widthPixels; 
/* <Button 
      android:id="@+id/button_classRoomVideos" 
      android:layout_width="95dp" 
      android:layout_height="98dp" 
      android:layout_alignTop="@+id/button_Test" 
      android:layout_marginLeft="83dp" 
      android:layout_toRightOf="@+id/button_Test" 
      android:layout_weight="1" 
      android:background="@drawable/classroom_lectures_videos" />*/ 
      width = (int)((ScreenWidth*9.3)/100); 
      height = (int)((ScreenHeight*14.50)/100); 
      RelativeLayout.LayoutParams params_mVideo; 
      params_mVideo = (RelativeLayout.LayoutParams)mVideoButton.getLayoutParams(); 
      params_mVideo.width=width; 
      params_mVideo.height=height; 
      params_mVideo.setMargins((int)((ScreenWidth*8.1053)/100), 0, 0, 0); 
      mVideoButton.setLayoutParams(params_mVideo); 
+0

我在應用程序的所有活動中都這樣做,但它在第一個活動中並不在所有活動中工作,它顯示了一些擠壓...... :( –

+0

這種技術對我來說很重要,請再次檢查它。 – Hemant

+0

嘗試處理不同的屏幕比例。 – JiTHiN

相關問題