如何在RadioButton中将图像的大小减小到所需的大小?

时间:2016-07-04 12:18:52

标签: java android image android-fragments android-radiobutton

我正在尝试在其上形成带有图像的3个单选按钮。所以我使用了XML属性android:button。但由于我的图像尺寸太大,我看不到它适合按钮。

以下是我的XML代码:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/netbankingRoot"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dp"
    android:layout_marginTop="50dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    tools:context=".activities.fragments.NetBankingFragment">


    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/listOfBanks"
        android:padding="20dp"
        android:layout_marginLeft="60dp">

        <TableRow
            android:layout_marginBottom="5dp">
            <RadioButton
                android:layout_height="60dp"
                android:layout_width="60dp"
                android:id="@+id/sbi"
                android:text="SBI"
                android:padding="30dp"
                android:button="@drawable/sbilogo"
                android:layout_marginRight="20dp"/>


            <RadioButton
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:id="@+id/axis"
                android:text="AXIS"
                android:padding="10dp"/>

        </TableRow>

        <TableRow
            android:layout_marginBottom="5dp">

            <RadioButton
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:id="@+id/citi"
                android:text="CITI"
                android:padding="10dp"/>

        </TableRow>




    </TableLayout>
</ScrollView>

我在这里得到的是this。我想要到达的是this

感谢您的时间!

2 个答案:

答案 0 :(得分:0)

我认为你必须使用其他图像编辑工具作为&#34; Paint.net&#34;

来缩小图像。

答案 1 :(得分:0)

您应该将drawables放在单选按钮的xml文件中,然后只需将$refreshToken = $this->decrypt($encryptedRefreshToken); 设置为xml文件,而不是drawable。如果这样做,您只需使用width / height属性更改大小即可。有关更多信息,请阅读此主题How can I set the width of radio buttons to change with regards to screen size? (android)及其最佳答案。