2016-08-18 68 views
0
<?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:我的手機上沒有按比例的按鈕?

下面是一些截圖:

This is in Studio When run

+0

這是在Studio中是一個截圖,當運行是另一個。 – Willie3838

回答

0

在你MainActivity,在該方法中button_1的的onClick,必須名稱以 「SetSubstractionOperator」,相同的名稱,你的佈局你的方法。

+0

對不起,但是,這將如何幫助按鈕顯示? (我知道Java不工作,我目前首先關注顯示器) – Willie3838

0

硬編碼的寬度和高度不會幫助您縮放所有屏幕,因爲所有屏幕都具有不同的分辨率質量。嘗試根據屏幕製作繪圖。

+0

但是我希望它在所有屏幕上都一樣嗎?不只是我的屏幕 – Willie3838