我已经实现了ToggleButton来使用图像而不是文本,但我如何缩放它们
我已尝试使用scaleType
但未使用
ic_toggle.xml (我在这里尝试过scaleType
但是没有用)
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false"
android:drawable="@drawable/ic_signal_p1"/>
<item android:state_checked="true"
android:drawable="@drawable/ic_signal_p2" />
</selector>
fragment_deviceitem_list.xml
<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical">
<ToggleButton
android:id="@+id/scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_toggle"
android:scaleType="fitCenter"
android:layout_margin="10dp"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="63dp"
android:layout_alignParentBottom="true"
android:visibility="visible" />
</RelativeLayout>
原始图片
这是我得到的结果。
答案 0 :(得分:2)
试试这个
<ToggleButton
android:id="@+id/scan"
android:layout_width="30px"
android:layout_height="30px"
android:background="@drawable/ic_toggle"
android:scaleType="fitCenter"
android:layout_margin="10dp"
android:textOn=""
android:textOff=""
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_centerVertical="true"/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:visibility="visible" />