[NotifyWithText.java]

 button = (Button) findViewById(R.id.short_notify);
        button.setOnClickListener(new Button.OnClickListener() {
            public void onClick(View v) {
                Toast.makeText(NotifyWithText.this, R.string.short_notification_text,
                    Toast.LENGTH_SHORT).show();
            }
        });

        button = (Button) findViewById(R.id.long_notify);
        button.setOnClickListener(new Button.OnClickListener() {
            public void onClick(View v) {
                Toast.makeText(NotifyWithText.this, R.string.long_notification_text,
                    Toast.LENGTH_LONG).show();
            }
        });

'old > API_Demo' 카테고리의 다른 글

APP_Preferences_PreferencesFromXML  (0) 2010.03.23
APP_Notification_StatusBar  (0) 2010.03.23
APP_Notification_NotifyingServiceController  (0) 2010.03.23
APP_Notification_IncomingMessageView  (0) 2010.03.23
APP_Menu_InflateFromXML  (0) 2010.03.23
Posted by jazzlife
,