用表格布局制作计算器背景

如果直接在TableLayout中添加控件,那么控件将和父容器等宽

如果想让控件出现在同一行,那么这些控件的外层一定要加一对<TableRow>

在<TableRow>的控件中,宽度默认为wrap-content

stretchColumns : 可伸展的列
shrinkColumns : 可收缩的列
collapseColumns : 可隐藏的列

三个属性均是通过索引控制

<?xml version="1.0" encoding="utf-8"?>
<TableLayout 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=".TableActivity"
    android:stretchColumns="*">

    <EditText></EditText>
    <TableRow>

        <Button
            android:text="7"
            ></Button>

        <Button
            android:text="8"
            ></Button>

        <Button
            android:text="9"
            ></Button>

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


    <TableRow>

        <Button
            android:text="4"
            ></Button>

        <Button
            android:text="5"
            ></Button>

        <Button
            android:text="6"
            ></Button>

        <Button
            android:text="*"
            ></Button>
    </TableRow>


    <TableRow>

        <Button
            android:text="1"
            ></Button>

        <Button
            android:text="2"
            ></Button>

        <Button
            android:text="3"
            ></Button>

        <Button
            android:text="-"
            ></Button>


    </TableRow>


    <TableRow>

        <Button
            android:text="0"
            ></Button>

        <Button
            android:text="."
            ></Button>

        <Button
            android:text="+"
            ></Button>

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

        <Button
            android:text="clear"></Button>


</TableLayout>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

m0_63911789

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值