Android针对不同设备的一般缩放

时间:2014-10-07 08:04:40

标签: android xml scale

祝你们好。

我有一个关于我最近开始构建的应用程序扩展的问题。 我非常喜欢编程,但对Android开发来说更新。

正如您所看到的:我的文字浏览效果适用于较小的分辨率,但不能缩放以获得更大的分辨率。

http://imgur.com/b5Ed3gh

什么是可能的解决方案?

我的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"
    android:background="@drawable/bg"

    tools:context=".MyActivity">

    <TextView
        android:id="@+id/topLeft"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="106dp"
        android:width="135dp"
        android:height="130dp"
        android:background="@drawable/rounded_corner"/>

    <Button
        android:id="@+id/startButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="25dp"
        android:background="@drawable/rounded_corner"
        android:text="Start" />

    <TextView
        android:id="@+id/counter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/topRight"
        android:layout_alignTop="@+id/startButton" />

    <TextView
        android:id="@+id/timer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/topLeft"
        android:layout_alignTop="@+id/startButton" />

    <TextView
        android:id="@+id/bottomLeft"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/topLeft"
        android:layout_below="@+id/topLeft"
        android:layout_marginTop="10dp"
        android:width="135dp"
        android:height="130dp"
        android:background="@drawable/rounded_corner" />

    <TextView
        android:id="@+id/bottomRight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/topRight"
        android:layout_below="@+id/topRight"
        android:layout_marginTop="10dp"
        android:width="135dp"
        android:height="130dp"
        android:background="@drawable/rounded_corner" />

    <TextView
        android:id="@+id/topRight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/topLeft"
        android:layout_alignBottom="@+id/topLeft"
        android:layout_alignParentRight="true"
        android:layout_marginRight="20dp"
        android:width="135dp"
        android:height="130dp"
        android:background="@drawable/rounded_corner" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:id="@+id/highscore"
        android:layout_toStartOf="@+id/counter"
        android:layout_alignParentBottom="true"
        android:layout_alignRight="@+id/startButton"
        android:layout_alignEnd="@+id/startButton"
        android:layout_marginBottom="41dp" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

等设备创建不同的布局文件夹

布局HDPI

布局MDPI

布局LDPI

layout-xdlpi等一个

Look This