0

LinearLayout我为每个设备的不同分辨率使用 Android 。这样我解决了不同分辨率的垂直布局问题。

但我无法解决水平布局问题。这是我的布局。我想要这样构建布局。

在此处输入图像描述

在这种情况下,我使用左/右边距,但这不适用于不同的分辨率。如何TextView在分辨率上放置关联?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >

<TextView
    android:id="@+id/titleView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="9"
    android:gravity="center"
    android:text="TextView"
    android:textColor="#5a5856"
    android:textSize="35sp" />

<TextView
    android:id="@+id/wordDafinitionView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="3"
    android:textSize="17sp"
    android:layout_marginLeft="25dp"
    android:layout_marginRight="30dp"
    android:text="TextView"
    android:textColor="#5a5856" />


<TextView
    android:id="@+id/TextView01"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="9"
    android:gravity="center"
    android:text="TextView"
    android:textColor="#5a5856"
    android:textSize="35sp" />

</LinearLayout>
4

1 回答 1

0

一种解决方案是您可以使用

DisplayMetrics metrics = getResources().getDisplayMetrics();
int width = metrics.widthPixels;
int height = metrics.heightPixels;

并检查不同的设备屏幕尺寸,

if((metrics.heightPixels/metrics.density) >= 700)
                {
                    Log.e(" 10 inch Tab", " 10 inch Tab");
                }
            else if((metrics.heightPixels/metrics.density) >= 550)
                {
                    Log.e(" 7 inch Tab", " 7 inch Tab");
                }
            else if((metrics.heightPixels/metrics.density) >= 400)
                {
                    Log.e(" 5 inch Tab / Mobile", " 5 inch Tab / Mobile");
                }
            else
                {
                    Log.e("All other mobile devices", "All mobile other devices");
                }

然后相应地设置 TextView 的宽度。

于 2013-08-18T12:50:14.433 回答