我已經在佈局文件中創建了佈局並定義了以下Xml
。DP在不同的屏幕上顯示不同的佈局
<LinearLayout 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="com.example.kirmani.myapplication.MainActivity"
android:orientation="vertical"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/colorPrimary"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@color/colorPrimaryDark"
/>
<ImageView
android:layout_width="405dp"
android:layout_height="260dp"
android:background="@color/colorAccent"
/>
</LinearLayout>
這是填充我的整個屏幕在Nexus 4
屏幕完美。但是當我預覽所有的屏幕時,它在一些屏幕上顯得非常奇怪。
我正在使用DP
,它應該保持相同的display
根據所有屏幕,但它不是那樣工作。請指導我..
謝謝,這符合所有設備的寬度,但高度仍然是一個問題。在Nexus One中它會填滿整個屏幕,但在其他屏幕中顯示空間 - – Kirmani88
您可以在第3個圖像視圖中使用您的身高匹配父母也 – Masum