出于某种原因,在我的一个片段中,没有显示 ImageButton 中的图片。这是片段布局代码:
<LinearLayout 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="com.apbguides.apbreloadedguides.Guides.CreateGuideFragment"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="textMultiLine"
android:ems="14"
android:id="@+id/editText"
android:background="#FFFFFF"
android:padding="10dp"
android:gravity="top|left" />
<LinearLayout
android:gravity="bottom"
android:layout_height="60dp"
android:background="#FFFFFF"
android:layout_centerVertical="true"
android:layout_width="match_parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawable="@mipmap/ic_launcher"/>
<Space
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawable="@mipmap/ic_launcher"/>
<Space
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawable="@mipmap/ic_launcher"/>
<Space
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawable="@mipmap/ic_launcher"/>
<Space
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawable="@mipmap/ic_launcher"/>
</LinearLayout>
</LinearLayout>
这是结果的屏幕截图:
如您所见,从下方可以看到空的 ImageButton,但由于某种原因其中没有图片。可能是什么问题呢?
ImageButton
,就像ImageView
,将图像作为属性android:src
,而不是android:drawable
像您正在尝试的那样。