Android:如何设置ImageButton图像的高度/宽度(src图像背景的内容)?
我想设置顶层图像(不是背景)图像的高度/宽度,应该自定义图像的大小而不是自动填充按钮
我有一个既有文本又有图像的按钮。它所取的图像尺寸作为图像的实际尺寸。如何更改按钮中图像的大小?
<Button
android:id="@+id/button3"
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:drawableTop="@drawable/home_icon"
android:text="Settings"
/>
Run Code Online (Sandbox Code Playgroud) 根据文档,FrameLayout中的子视图相互叠加,最近添加的视图位于顶部.我注意到,这似乎在Lollipop或更高版本中并不准确.例如,在以下xml中,按钮仍然可见,即使它应该由我的自定义视图覆盖.
值得一提的是,虽然我的自定义视图扩展了FrameLayout,但我确实给子视图充气,所以我的FrameLayout不是空的.
<FrameLayout
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"
tools:context=".MainActivity">
<Button
android:id="@+id/some_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_gravity="center"
android:text="button"/>
<mycustomframelayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"/>
</FrameLayout>
Run Code Online (Sandbox Code Playgroud)
知道我在这里缺少什么吗?