-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的完成佈局的任何文字,也可顯示在其他類。