方形按钮屏幕宽度和重量匹配

时间:2016-08-03 12:38:32

标签: android xml android-layout button android-layout-weight

我的布局只包含一个内部有3个按钮的LinearLayour。

我希望这3个按钮垂直填满屏幕所以我使用" weigth = 1"但我也希望按钮是方形的,也就是说,它们的宽度等于它们的高度。

有什么办法吗?

这里是.xml文件

<?xml version="1.0" encoding="utf-8"?>

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="android.jose.se.Prueba"
    android:background="@drawable/bg"
    android:gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical">

    <Button
        android:id="@+id/bHet"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@drawable/layer1"
        android:onClick="cambiarBoton"/>

    <Button
        android:id="@+id/bGay"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@drawable/layer2"
        android:onClick="cambiarBoton"/>

    <Button
        android:id="@+id/bLesbi"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@drawable/layer3"
        android:onClick="cambiarBoton"/>

</LinearLayout>
</RelativeLayout>

2 个答案:

答案 0 :(得分:2)

我遇到了类似的问题,并使用Google's Percent Relative Layout来帮助您管理视图宽高比。

您可以像这样使用

 <android.support.percent.PercentRelativeLayout
         xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:app="http://schemas.android.com/apk/res-auto"
         android:layout_width="match_parent"
         android:layout_height="match_parent">
     <Button
         android:layout_width="match_parent"
         app:layout_aspectRatio="100%"/>
 </android.support.percent.PercentFrameLayout>

答案 1 :(得分:0)

执行此操作的最佳方法是创建一个名为Square按钮的新类,此类应该扩展Button。然后在这个类的onMeasure中,只需将heightSpec设为WidthSpec即可。

public class SquareButton extends Button {

public SquareButton(Context context) {
    super(context);
}

public SquareButton(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public SquareButton(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}

@Override
protected void onMeasure(int WidthSpec, int HeightSpec){
    int newWidthSpec = HeightSpec ;

    super.onMeasure(newWidthSpec, HeightSpec);
 }}

现在你可以在你的xml中使用这个SquareButton而不是普通的Button。 android:width属性的值将被忽略。

<com.example.package.SquareButton
     android:height = "0dp"
     android:weight = "1"
     android:width = "0dp"
/>
相关问题