<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_one"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.william.calculator2.MainActivity">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/grey">
<TextView
android:layout_weight="2"
android:id="@+id/text"
android:layout_width="match_parent"
android:textSize="50sp"
android:gravity="center"
android:textColor="@color/colorPrimary"
android:layout_height="0dp"
android:background="@color/white"
android:text="@string/one" />
<Button
android:layout_marginTop="20dp"
android:id="@+id/button_1"
android:background="@drawable/plus"
android:layout_width="80dp"
android:layout_height="0dp"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:onClick="setSubtractionOperator"/>
<Button
android:id="@+id/button_2"
android:background="@drawable/minus"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:layout_marginLeft="10dp"
android:layout_width="80dp"
android:layout_height="0dp" />
<Button
android:layout_weight="1"
android:id="@+id/button_3"
android:background="@drawable/one"
android:layout_marginTop="20dp"
android:layout_marginLeft="10dp"
android:layout_width="80dp"
android:layout_height="0dp"
android:onClick="useNumber1"/>
<Button
android:layout_weight="1"
android:id="@+id/button_4"
android:layout_marginLeft="10dp"
android:background="@drawable/roundedbutton"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:layout_width="wrap_content"
android:layout_height="0dp" />
</LinearLayout>
</RelativeLayout>
是的,我意識到我的按鈕的大小是硬編碼的,我試圖不這樣做,但它不工作?我是一名初學者,所以請不要因我的錯誤而懲罰我,我感謝所有的幫助。Android Studio:我的手機上沒有按比例的按鈕?
下面是一些截圖:
這是在Studio中是一個截圖,當運行是另一個。 – Willie3838