1

我想在 Imagebutton 上显示一条消息,以便用户知道他必须使用 Imagebutton 选择图像。

可以使用EditText.setError("Error")我正在寻找此类消息的方法显示的错误消息的类型。有没有办法为 Imagebutton 显示它?setError仅适用于 Edittext 。

或者谷歌地图上的标记片段消息的类型?

我不想使用警报对话框,因为它们很大并且占用很大空间!

4

1 回答 1

0

试试这个:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageButton
            android:id="@+id/imgBt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/falcao_large"/>

        <TextView
            android:id="@+id/errorText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignRight="@+id/imgBt"
            android:layout_alignBottom="@+id/imgBt"
            android:background="@drawable/popup_inline_error"
            android:text="Click me first" 
            android:visibility="gone"/>

    </RelativeLayout>

在 Android SDK 文件夹中搜索 popup_inline_error.9.png 并将其复制到您的 res/drawable 文件夹。

在您的 onClick 事件中,您可以显示错误消息:

TextView tv = (TextView) findViewById(R.id.errorText);
tv.setVisibility(View.VISIBLE);  

在此处输入图像描述

于 2013-10-18T14:10:13.833 回答