android布局垂直/水平重量

时间:2013-08-18 12:14:34

标签: android layout textview

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

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

enter image description here

在这种情况下,我使用左/右边距,但这不适用于不同的分辨率。如何将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>

1 个答案:

答案 0 :(得分: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的宽度。