布局宽度等于高度

时间:2013-01-26 19:01:52

标签: android android-layout button

是否有一种方法可以使高度取决于我的xml中的宽度?

我有一些线性布局的按钮。按钮的宽度取决于设备,因为它们水平填充屏幕。我想要方形按钮,这是我的问题。 有人可以帮助我吗?

<Button
            android:id="@+id/b_0xa"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:clickable="false"
            android:text="@string/b_0xa" />

7 个答案:

答案 0 :(得分:1)

要使视图的height等于视图的width,可以使用ConstraintLayout

 app:layout_constraintDimensionRatio="1:1"

1:前是宽度

1之后的

:是高度

请尝试以下代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        app:layout_constraintDimensionRatio="1:1"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:text="Button"/>

</androidx.constraintlayout.widget.ConstraintLayout>

以上代码的输出为:

enter image description here

答案 1 :(得分:0)

您可以在Java代码中以编程方式轻松完成。

动态获取按钮的宽度[使用 int x = mButton.getWidth() ],然后使用返回值设置高度[ mButton.setHeight(x) ] 。

<强> P.S。 :建议使用LayoutParams设置任何视图的高度和宽度。因此,您应该使用setLayoutParams()。

,而不是使用setHeight()

mButton.setLayoutParams(new LinearLayout.LayoutParams(x, x));

答案 2 :(得分:0)

您应该通过为其分配固定值来更改android:layout_widthandroid:layout_height的值

<Button
            android:id="@+id/b_0xa"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:clickable="false"
            android:text="@string/b_0xa" />

为它们分配固定值可确保无论屏幕大小如何,您的按钮都保持不变,因为使用的单位是dp。确保您指定的值相同,因为您需要一个正方形。

答案 3 :(得分:0)

在这种情况下,我建议您使用layout_weight作为height属性,然后它会为按钮分配一个比例权重,该按钮将按不同的屏幕尺寸进行缩放:

<Button
        android:id="@+id/b_0xa"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight=".4"
        android:clickable="false"
        android:text="@string/b_0xa" />

要使此方法起作用,必须将权重应用于布局中其他视图的高度。总重量必须等于1,因此您必须使用布局和重量来实现最佳设计。

答案 4 :(得分:0)

正如我解释here如果你想100%从XML中做到这一点,你可以使用PercentRelativeLayout并执行以下操作:

<android.support.percent.PercentRelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <Button
        app:layout_aspectRatio="100%"
        app:layout_widthPercent="100%" />
</android.support.percent.PercentRelativeLayout>

确保您在应用程序gradle文件中包含该库:

compile 'com.android.support:percent:XX.X.X'

答案 5 :(得分:0)

您可以使用约束布局来实现。我正在使用宽高比属性和按钮宽度的绝对值。当我的按钮按其宽度达到约束时,它将相应地设置我的高度。

  <?xml version="1.0" encoding="utf-8"?>
  <androidx.constraintlayout.widget.ConstraintLayout
    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"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <Button
        android:id="@+id/b_0xa"
        android:clickable="false"
        android:text="@string/app_name"
        android:layout_width="300dp"
        android:layout_height="0dp"
        android:src="@android:drawable/dark_header"
        app:layout_constraintDimensionRatio="h,16:9"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

答案 6 :(得分:0)

<Button
  android:id="@+id/random"
  android:layout_width="60dp"
  android:layout_height="60dp"
  android:layout_weight="1"
  android:text="text view" 
/>

确保提供此代码或手动更改高度和宽度