Android小部件布局总是压缩ImageButton

时间:2017-07-11 18:38:30

标签: android layout widget

我想创建一个包含一个按钮的小部件来启动某些活动。但是,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>

照片上:左边一个是我的。在右边 - 它应该如何表现。 enter image description here

0 个答案:

没有答案