android如何在布局中为所有分辨率设置按钮

时间:2014-02-07 06:50:50

标签: android layout android-button

我在线性布局中设置按钮,10.1“分辨率为1280x800,设置正确,但未设置为7”分辨率1024x600。有人请建议如何为所有分辨率设置此按钮?

这是我的xml文件集背景:

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

 <Button
    android:id="@+id/kids_first"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:text="Button"
    android:layout_gravity="right" />

<Button
    android:id="@+id/kids_second"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:text="Button" 
    android:layout_gravity="right"
    android:layout_marginTop="240dp"/>

<Button
    android:id="@+id/kids_third"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:text="Button" 
    android:layout_gravity="center"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="-110dp"/>

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

将此代码用于您的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.6"
    android:gravity="right" >

    <Button
        android:id="@+id/kids_first"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:text="Button" />
</LinearLayout>

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.4" >

    <Button
        android:id="@+id/kids_second"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:layout_gravity="right"
        android:text="Button" />

    <Button
        android:id="@+id/kids_third"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:layout_gravity="center_horizontal"
        android:text="Button" />
</FrameLayout>

</LinearLayout>

答案 1 :(得分:0)

试试这个..

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

<Button
android:id="@+id/kids_first"
android:layout_width="wrap_content"
android:layout_height="wrap_content"  
android:layout_weight="1"
android:text="Button"
android:layout_gravity="right" />

<Button
android:id="@+id/kids_second"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" 
android:layout_gravity="right"
android:layout_marginTop="240dp"/>

<Button
android:id="@+id/kids_third"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" 
android:layout_gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginTop="-110dp"/>

</LinearLayout>