2013-01-11 53 views
-1

如何使用可在應用程序的任何位置調用的文本框創建單個彈出式佈局。請參閱下面的僞代碼,我的意思是;Android創建可重複使用的佈局

PopUpClass popup; 
private static Singleton instance = null; 
class Singleton { 
    if(instance == null) { 
     instance = new Singleton(); 
     // Instantiate a class pop up class layout 
     popup = new PopUpClass(); // I dont know how to create this one 
    } 
    return instance; 
} 


SomeClass { 
    private buttonClicked { 
    Singleton singleton = new Singleton(); 
    PopUpClass popup = singleton.popup; 

    //add the pop up class to current view 
    } 
} 

這意味着,我想彈出創建一次類,以便對上SomeClass的完成佈局的任何文字,也可顯示在其他類。

回答

2

如果你想顯示相同的文本框,或在每一個佈局的其他部件的話,最好的方法是創建一個佈局,包括這個佈局中要顯示這每一項活動.. 可以參考以下鏈接link