ImageButton在android中的多个屏幕

时间:2015-01-24 05:51:46

标签: android imagebutton

我试图制作计算器应用程序,但在为其设计界面时遇到困难 我希望按钮水平填充屏幕。但它们太小了。如何更大的按钮,适合所有屏幕尺寸。 这是我在.xml文件中的代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="8.5"
android:orientation="vertical"
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="duy.calculatordemo.MainActivity">

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="0"
    android:gravity="right"
    android:background="#AAAAAA"
    android:textAppearance="?android:attr/textAppearanceLarge" 
    android:layout_weight="1"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="4" 
    android:layout_weight="1">

    <ImageButton
        android:id="@+id/btntan"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"

        android:src="@drawable/btn_tan"
        android:background="@null" />

    <ImageButton
        android:id="@+id/btnsin"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@layout/activity_main"

        android:src="@drawable/btn_sin" />

    <ImageButton
        android:id="@+id/btncos"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@layout/activity_main"
        android:src="@drawable/btn_cos" />

    <ImageButton
        android:id="@+id/btnlog"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@layout/activity_main"
        android:src="@drawable/btn_log" />

</LinearLayout>

enter image description here

你能帮帮我吗?谢谢!

1 个答案:

答案 0 :(得分:1)

使用android:scaleType="fitXY"填充image button中的背景。有关详细信息,请尝试this