我想创建一个包含一个按钮的小部件来启动某些活动。但是,ImageButton总是被压缩到小部件的大小。这是小部件的布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/appwidget_schedule_button"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/schedule_shortcut" />
</RelativeLayout>