Android 布局练习—计算器

发布于 2022-08-31 21:05:27 字数 6321 浏览 180 评论 1

小菜鸟布局第一次布局,orz

<RelativeLayout android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TableLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_alignParentBottom="true"
        android:stretchColumns="*">
        <TextView android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:text="0"
            android:gravity="right|center_vertical"/>
        <TableRow android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="80dp">
            <Button android:id="@+id/button1"
                android:layout_height="80dp"
                android:layout_width="wrap_content"
                android:text="7"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button2"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="8"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button3"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:text="9"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button4"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="/"
                android:background="#db8122"
                />
        </TableRow>
        <TableRow android:id="@+id/tableRow2"
            android:layout_height="80dp"
            android:layout_width="wrap_content"
            android:layout_marginTop="1dp">
            <Button android:id="@+id/button5"
                android:layout_height="80dp"
                android:layout_width="wrap_content"
                android:text="4"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button6"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="5"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button7"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="6"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button8"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="*"
                android:background="#db8122" />
        </TableRow>
        <TableRow android:id="@+id/tableRow3"
            android:layout_height="80dp"
            android:layout_width="wrap_content"
            android:layout_marginTop="1dp">
            <Button android:id="@+id/button9"
                android:layout_height="80dp"
                android:layout_width="wrap_content"
                android:text="1"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button10"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="2"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button11"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="3"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button12"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="-"
                android:background="#db8122"/>
        </TableRow>
        <TableRow android:id="@+id/tableRow4"
            android:layout_height="80dp"
            android:layout_width="wrap_content"
            android:layout_marginTop="1dp">
            <Button android:id="@+id/button13"
                android:layout_height="80dp"
                android:layout_width="wrap_content"
                android:text="0"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button14"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="."
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button15"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="+"
                android:background="#0a89b6"
                android:layout_marginRight="1dp"/>
            <Button android:id="@+id/button16"
                android:layout_height="match_parent"
                android:layout_width="wrap_content"
                android:text="="
                android:background="#db8122"
                android:/>
        </TableRow>

    </TableLayout>
</RelativeLayout>

截图:

screenshot_2017-09-03-18-30-46-155_com example hu

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞陪衬 2022-05-02 21:12:07

可以支持科学计算式吗?

~没有更多了~

关于作者

那小子欠揍

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

醉城メ夜风

文章 0 评论 0

远昼

文章 0 评论 0

平生欢

文章 0 评论 0

微凉

文章 0 评论 0

Honwey

文章 0 评论 0

qq_ikhFfg

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文