2011-07-13 183 views
-1

我創建了一個媒體播放器,其工作正常。我希望在媒體播放器底部創建一個彈出窗口....我在谷歌搜索一些示例代碼,但我真的很困惑...任何一個給我的想法和一些示例鏈接.......如何創建彈出窗口?

Element description: 

1. The copyright, disclaimer and buy block, this block contains links to popup 
    windows that contain a copyright and or disclaimer. And an option to buy the 
    application for the advertisement less version. The content of this block is fed trough 
    the application XML feed. The color of the text is fed by the application xml plus the 
    popup links and texts itself; 

回答

2

試試這個; http://android-er.blogspot.com/2011/06/custom-alertdialog.html

編輯: 對不起,由於我的限制網絡中,我能不能添加評論,所以我編輯我的答案。

你所說的彈出寡婦,在Android中它被稱爲對話框,直到用戶與其進行交互

如果您不希望該用戶輸入,那麼你可以選擇在屏幕上顯示吐司,它停留在屏幕上指定的時間和此鏈接敏銳地自動消失

研究,你的困惑會告一段落: http://developer.android.com/guide/topics/ui/dialogs.html

+0

只是一個鏈接不是一個好的答案。請至少提供一個摘要。 – Nanne

+0

你能解釋一下彈出窗口嗎?爲什麼我們正在使用我們的項目。我很困惑...請 – balaji

+0

這個鏈接完全困惑了我......請提供另一個鏈接給我一個簡單的編碼......... – balaji

0

您可以使用JDialogJOptionPane。以下是您如何使用的示例:JOptionPane

JPanel panel = new JPanel(); 
// Add whatever you want to the panel 
JOptionPane pane = new JOptionPane(); 
JButton btnAdd = new JButton("OK"); 
JButton btnCancel = new JButton("Cancel"); 
Object[] options = {btnAdd, btnCancel}; 
pane.showOptionDialog(null, panel, "The Title", JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null, options, null);