我正在尝试让我的应用看起来像下面的图片,但是通过将我的应用设置为整个屏幕的百分比(不设置dp),这样无论我使用何种类型的手机,应用都会占用相同的屏幕百分比。这是我的主要活动,它只包含一个LinearLayout中的两个片段。
android:layout_width="300dp"
android:layout_height="300dp"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_gravity="center"
android:background="@drawable/rounded_edges"
android:theme="@style/Theme.AppCompat.Light.Dialog.Alert">
<!-- Create a container (FrameLayout) for Body Fragment to switch with other Fragments on button clicks-->
<fragment
android:id="@+id/menuFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="5dp"
class="it.anddev.bradipao.janus.MenuFragment"
tools:layout="@layout/fr_menu">
</fragment>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="end" />
我希望我的身高和宽度为手机高度和宽度的百分比,如此处所示。
答案 0 :(得分:1)
您应该使用LinearLayout作为容器,并使用以下属性:
layout_weight。例如:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.75">
....
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.25">
....
</LinearLayout>
</LinearLayout>
第一个布局占据屏幕的75%,第二个占25%。
请注意,使用重量时,高度和/或宽度必须为0dp。您现在可以根据需要使其变得复杂。