如何将前景图像设置为ImageButton?

时间:2018-05-17 13:38:17

标签: android imagebutton android-imagebutton

我是Android App开发的新手。我想在API级别19中将前景图像设置为图像按钮。如何执行此操作?

enter image description here

1 个答案:

答案 0 :(得分:1)

对于示例代码,请将其用于1个答案的布局:

<FrameLayout
    android:id="@+id/answer_section"
    android:layout_width="100dp"
    android:layout_height="100dp">

    <ImageView
        android:id="@+id/answer_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/house_img"/>

    <ImageView
        android:id="@+id/answer_check"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/check_img"/>
</FrameLayout>

你为2张图片使用2个不同的ImageView,这样它们可以分开工作,比如做动画,显示/隐藏条件......