I think an alertdiaglog can do it.

        Dialog dialog=new AlertDialog.Builder(this)
        .setTitle("about")
        .setMessage("author:ddd\n")
        .setPositiveButton("OK", new DialogInterface.OnClickListener()
{
                public void onClick(DialogInterface dialog, int whichButton){
                        return;
                }
        })
        .create();
        dialog.show();

On 1月28日, 下午1时40分, "Sasikumar.S" <sasikumar.it1...@gmail.com> wrote:
> Hi,
>
> How to find whether internet connection is working or not in android
> emulator?...
>
> I'm doing one RSS Program.
> When internet connection is not enable the RSS feed is not fetching the data
> and it is showing error.
> So if internet connection is not enable i need to display a alert that
> "Internet Connection Not Enabled"
>
> How to do this?...
>
> --
> Thanks & Regards
> Sasikumar.S

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to