这是一个相当外行的问题,因为我在 Android 开发方面完全是绿色的。
最近我正在尝试使用 android 实现一个简单的计算器。
我想显示两行计算器,第一行显示用户输入的方程式,底部显示答案。
这是我在布局 xml 文件中的代码:
<RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<LinearLayout
android:id="@+id/linearLayout0"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true">
<TextView
android:id="@+id/calculatorDisplay0"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:maxLines="1"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="40sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_below="@+id/linearLayout0" >
<TextView
android:id="@+id/calculatorDisplay1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:layout_below="@id/calculatorDisplay0"
android:maxLines="1"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="0"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="40sp" />
</LinearLayout>
.
.
.
.
然而,结果如下:
如您所见,这两行嵌套在一起。
我很确定我的代码有问题,但我找不到它。有人可以帮我吗?