TableRow 中的居中和拉伸按钮

Posted

技术标签:

【中文标题】TableRow 中的居中和拉伸按钮【英文标题】:Center and stretch button in TableRow 【发布时间】:2021-12-11 04:56:42 【问题描述】:

我有这个代码

<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:gravity="center"
    tools:context=".MainActivity">

<TableRow>
    <TextView
            android:layout_weight="0.5"
            android:text="Login"
            android:layout_
            android:layout_
            android:layout_marginLeft="50dp"
            android:layout_marginStart="50dp"/>

    <EditText
            android:layout_weight="1"
            android:layout_
            android:layout_
            android:layout_marginRight="25dp"
            android:layout_marginEnd="25dp"
    />
</TableRow>

<TableRow>
    <TextView
            android:layout_weight="0.5"
            android:text="Email"
            android:layout_
            android:layout_
            android:layout_marginLeft="50dp"
            android:layout_marginStart="50dp"
    />

    <EditText
            android:layout_weight="1"
            android:layout_
            android:layout_
            android:layout_marginRight="25dp"
            android:layout_marginEnd="25dp"
    />
</TableRow>

<TableRow>
    <Button
            android:text="Send"
            android:layout_
            android:layout_
    />
</TableRow>

它看起来像这样 image1

我需要将此按钮居中并拉伸到其他表格行的大小,即到授权表单的大小。比如下面的截图

image2

我尝试使用android:stretchColumns="1",但它不起作用

【问题讨论】:

【参考方案1】:

我查看了您的代码,并能够通过以下方式创建您正在寻找的内容

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:stretchColumns="*"
android:gravity="center"
tools:context=".MainActivity">
<TableRow>
    <TextView
        android:layout_
        android:layout_
        android:layout_marginStart="50dp"
        android:layout_marginLeft="50dp"
        android:layout_weight="0.3"
        android:text="Login" />

    <EditText
        android:layout_
        android:layout_
        android:layout_marginEnd="25dp"
        android:layout_marginRight="25dp"
        android:layout_weight="1" />
</TableRow>

<TableRow>

    <TextView
        android:layout_
        android:layout_
        android:layout_marginStart="50dp"
        android:layout_weight="0.3"
        android:text="Email" />

    <EditText
        android:layout_
        android:layout_
        android:layout_marginEnd="25dp"
        android:layout_marginRight="25dp"
        android:layout_weight="1" />
</TableRow>

<TableRow>
    <Button
        android:layout_
        android:layout_
        android:layout_marginStart="50dp"
        android:layout_marginEnd="25dp"
        android:text="Send"
        android:layout_weight="1"/>
</TableRow>

正如文档所示,stretchColumns 属性是“要拉伸的列的从零开始的索引”。通过给它值 * 我们说我们希望所有列均匀拉伸。通过使用布局权重,我们可以改变不同视图的大小。希望这对您有所帮助。 IMO 你应该考虑使用相对或线性布局来实现相对简单的 UI,比如这些,或者甚至是非常宽容的约束布局。

【讨论】:

谢谢!它帮助了我。我找到了另一种方法,stretchColumns = 1。imgur.com/1eue5Xhpastebin.com/2TdampS0 没问题,很高兴看到您正在探索寻找解决方案!

以上是关于TableRow 中的居中和拉伸按钮的主要内容,如果未能解决你的问题,请参考以下文章

将按钮和 textView 居中

如何将宽度设置为“填充父项”的android按钮中的图标和文本居中

TableLayout布局

如何使 HTML tr(表格行)中的文本居中?

慕课网/安卓攻城狮视频学习及练习

如何使用 WIN32 C/C++ API 告诉 Windows 10 平铺、居中或拉伸桌面壁纸?