10

有没有一种方法可以让高度取决于我的 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" />
4

7 回答 7

4

要使heightof view 等于widthof view,可以使用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>

上面代码的输出是:

在此处输入图像描述

于 2020-04-03T04:31:15.823 回答
0

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

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

PS:建议使用 LayoutParams 设置任何 View 的高度和宽度。因此,您应该使用 setLayoutParams(),而不是使用 setHeight()。

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

于 2013-01-26T19:11:52.010 回答
0

您应该通过为它们分配固定值来更改赋予android:layout_widthand的值android: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。确保您分配的值相同,因为您需要一个正方形。

于 2016-10-06T15:56:33.623 回答
0

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

  <?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>
于 2019-10-01T06:54:10.603 回答
0

在这种情况下,我建议您使用 layout_weight 作为您的高度属性,然后它将按比例分配给将在不同屏幕尺寸上缩放的按钮的权重:

<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,因此您必须使用布局和重量来实现最佳设计。

于 2016-10-06T16:22:55.483 回答
0

正如我在此处解释的,如果您想 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'
于 2017-02-11T23:44:41.447 回答
0
<Button
  android:id="@+id/random"
  android:layout_width="60dp"
  android:layout_height="60dp"
  android:layout_weight="1"
  android:text="text view" 
/>

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

于 2020-01-28T04:01:43.987 回答