Android中不同类型的设备需要相同的设计

时间:2013-03-20 05:06:46

标签: android design-patterns layout

我创建了一个按钮布局设计,如图所示。如何实现不同尺寸屏幕的设计模式?此布局适用于3.7英寸屏幕,但不适用于其他屏幕。可能是scrollview是一个选项,但这不满足我。我该怎么做?有什么帮助吗?

enter image description here

这是我的xml文件

<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" >

<Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="110dp"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="5dp"
    android:text="Button" />

<Button
    android:id="@+id/button2"
    android:layout_width="match_parent"
    android:layout_height="110dp"
    android:layout_below="@+id/button1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="5dp"
    android:text="Button" />

<Button
    android:id="@+id/button3"
    android:layout_width="match_parent"
    android:layout_height="110dp"
    android:layout_below="@+id/button2"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="5dp"
    android:text="Button" />

<Button
    android:id="@+id/button4"
    android:layout_width="match_parent"
    android:layout_height="110dp"
    android:layout_below="@+id/button3"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="5dp"
    android:text="Button"
    android:layout_marginBottom="5dp" />

2 个答案:

答案 0 :(得分:2)

通过此链接,您可以了解不同屏幕布局的设计方案。 http://developer.android.com/guide/practices/screens_support.html

答案 1 :(得分:1)

嗨,你可以减肥而不是相对布局。如果你使用相对布局概念,它将适合所有屏幕。 试试下面的xml并检查不同的屏幕。

   <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"
      android:orientation="vertical"
   android:weightSum="8" >

     <Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="0dp"
   android:layout_weight="2"
android:text="Button" />

  <Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:text="Button" />

  <Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="0dp"
  android:layout_weight="2"
android:text="Button" />

   <Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="0dp"
  android:layout_weight="2"
android:text="Button"
 />
</LinearLayout>

线性布局中的权重总和将采用整个屏幕尺寸。 layout_weight将根据权重修复按钮..