我使用相对布局创建了具有hdpi密度的正常屏幕尺寸的布局。但我知道一些屏幕尺寸相同的设备底部被裁剪为7-8毫米3个android常用按钮(家庭等)。
现在我想知道如何创建布局以适应这种类型的设备,因为现在它将我的布局裁剪为7毫米?
感谢。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/prime"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#8B008B"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="5dp"
tools:context="com.example.testznanja.MainActivity" >
<RelativeLayout
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@drawable/question_layout" >
<TextView
android:id="@+id/questionText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
<Button
android:id="@+id/beginTest"
android:layout_width="match_parent"
android:layout_height="52dp"
android:layout_below="@+id/infoPanel"
android:layout_marginTop="25dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/beginTest"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button3"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<RelativeLayout
android:id="@+id/infoPanel"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_below="@+id/rl"
android:layout_marginTop="25dp"
android:background="@drawable/info_panel_layout"
android:paddingLeft="5dp"
android:paddingRight="5dp" >
<TextView
android:id="@+id/questionsAnswers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="Skor: 0"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:gravity="right"
android:text="Vreme: 20"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/help"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="50:50"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
答案 0 :(得分:0)
您是否尝试使用像nexus系列这样的软菜单按钮在仿真器上进行测试?这些手机的宽高比与Galaxy s3,s4等其他手机相差无几。但要回答你的问题,如果你真的希望你的布局灵活适应一切,我可以想到3种选择:
[1]如果你不介意滚动,你可以将@+id/prime
的父亲RelativeLayout包裹在ScrollView内。或者看看我修改过的xml文件。只需用你提供的那个替换drawable:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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" >
<RelativeLayout
android:id="@+id/prime"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#8B008B"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="5dp"
tools:context="com.example.testznanja.MainActivity" >
<RelativeLayout
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@drawable/question_layout" >
<TextView
android:id="@+id/questionText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
<Button
android:id="@+id/beginTest"
android:layout_width="match_parent"
android:layout_height="52dp"
android:layout_below="@+id/infoPanel"
android:layout_marginTop="25dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/beginTest"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button3"
android:layout_marginTop="18dp"
android:background="@drawable/button_normal"
android:text="Button" />
<RelativeLayout
android:id="@+id/infoPanel"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_below="@+id/rl"
android:layout_marginTop="25dp"
android:background="@drawable/info_panel_layout"
android:paddingLeft="5dp"
android:paddingRight="5dp" >
<TextView
android:id="@+id/questionsAnswers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="Skor: 0"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:gravity="right"
android:text="Vreme: 20"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/help"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="50:50"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
<View
android:id="@+id/dummy"
android:layout_width="match_parent"
android:layout_height="800dp"
android:layout_below="@+id/button4"
android:background="#ff4444" />
</RelativeLayout>
</ScrollView>
请注意,我添加了一个红色背景的View
,并在底部添加了android:id="@+id/dummy"
。这是为了让您看到滚动效果并模拟裁剪场景。如果您不需要,请将其删除。
[2]如果您希望所有内容都适合屏幕而不必向下滚动,则应将您的父亲RelativeLayout转换为LinearLayout
和use weights。这种方法更复杂,需要做很多工作,因为你必须计算每个孩子的体重,你必须在你已经拥有的xml中改变孩子的每个宽度和高度。
[3]重新设计你的布局,以便它总是有额外的空间来适应不同的设备纵横比,并重新设计你的图像和背景。我建议你阅读Android Design Guidelines。
第一个是3中最容易的。如果你希望你的布局尽可能灵活,我很抱歉我的朋友,但我想不出更简单的方法。