在Android模拟器中未显示Imagebutton

时间:2018-12-06 03:02:16

标签: java android

我有一个问题,我无法找到解决方案。我正在通过Android SDk创建一个imagebutton,尽管它在“预览”窗口中显示,但在Nexus 6仿真器中却没有显示。图像附在这里 enter image description here

xml文件的代码是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dp"
    tools:context=".ViewActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:textSize="@dimen/activity_bold_textsize"
    />


    <ImageButton
        android:id="@+id/imageButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:src="@tools:sample/avatars" />

    <CheckBox
        android:id="@+id/checkBox"

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/rememberMe" />

    <RadioGroup
        android:id="@+id/radio_g1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
        <RadioButton
            android:id="@+id/rad1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/rad1"/>
        <RadioButton
            android:id="@+id/rad2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/rad2"
            />
    </RadioGroup>

    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/togb1" />

    <Switch
        android:id="@+id/switch1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/Switch" />

</LinearLayout>

2 个答案:

答案 0 :(得分:3)

您不知道toolsandroid之间的区别。 tools:src="@tools:sample/avatars"仅在IDE的预览中显示。 改成 android:src="@tools:sample/avatars"

检查文档:https://developer.android.com/studio/write/tool-attributes

答案 1 :(得分:0)

原因,您使用的是class属性,而不是tools:src

android:src =仅在预览模拟器中工作。它只是向您显示临时提示。

tool:<attributes> =用于定义的实际定义

例如如果在textView中使用android:<attributes>。它只是像提示一样显示主题外观。