嗯,我有activity.xml我有一個背景圖像和一個按鈕,它也有一個背景圖像在普通屏幕上運行良好,但是當我在xlarge上運行它時或大屏幕按鈕的位置改變如何使Android應用程序適合所有屏幕尺寸
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@drawable/menu"
android:layout_margin="@dimen/my_view_margin"
>
<LinearLayout
android:layout_width="300px"
android:layout_height="200px"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="172dp"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="60px"
android:background="@drawable/bt"
android:text="Button" />
</LinearLayout>
</RelativeLayout>
這是代碼的上方和下方是不同的畫面的圖像
不能增加圖象引起不必須足夠的聲譽
首先,你將要開始使用'dp'值,而不是'px'值。並且,閱讀這些鏈接。綽綽有餘,以達到你所期望的。 http://developer.android.com/guide/practices/screens_support.html和http://android-developers.blogspot.in/2011/07/new-tools-for-managing-screen-sizes.html –
是的使用DP而不是PX。爲什麼這個線性內部相對? 不要修復高度,寬度這是更大的設備的問題.. –
試試我的答案它應該適用於所有設備.. –