线性布局---计算器例子
Posted 肖进炎笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了线性布局---计算器例子相关的知识,希望对你有一定的参考价值。
今天我们来讨论计算器的一个布局,难点为 0 ,= 这个符号
代码:以下代码为上图红色边框内,
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <!-- 大框 --> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <!-- 左框 --> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:orientation="vertical"> <!-- 1 2 3 --> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="1" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="2" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="3" /> </LinearLayout> <!-- 0 . --> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <Button android:layout_height="wrap_content" android:layout_weight="2" android:text="0" /> <Button android:layout_height="wrap_content" android:layout_weight="1" android:text="." /> </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" > <Button android:layout_width="match_parent" android:layout_height="match_parent" android:text="=" /> </LinearLayout> </LinearLayout> </LinearLayout>
以上是关于线性布局---计算器例子的主要内容,如果未能解决你的问题,请参考以下文章