我有一個活動,根項目是一個RelativeLayout。在某一點上,我想顯示另一個頂部的視圖,但不想使用另一個活動,因爲這會刪除/重置以前的內容(我想保持原樣)。我只是想將視圖推到頂部,在添加的視圖中有一個按鈕可以再次關閉它。RelativeLayout在同一活動中的其他RelativeLayout頂部
0
A
回答
3
定義XML文件中所有的佈局給它的自定義佈局。設置每個佈局..你「走了」鑑於
設置可見,當你想隱藏,並設置能見度爲「Visible」當你想顯示在上面......
0
您可以使用警報對話框,在這種情況下,您的後臺活動將保持原樣,您也可以自定義對話框。
public class CustomizeDialog extends Dialog implements OnClickListener {
Button okButton;
/*
* param context
*
*/
public CustomizeDialog(Context context) {
super(context);
/** 'Window.FEATURE_NO_TITLE' - Used to hide the title */
requestWindowFeature(Window.FEATURE_NO_TITLE);
/** Design the dialog in main.xml file */
setContentView(R.layout.custom_dialog);
okButton = (Button) findViewById(R.id.btn1);
okButton.setOnClickListener(this);
}
@Override
public void onClick(View v) {
/** When OK Button is clicked, dismiss the dialog */
if (v == okButton)
dismiss();
}
你將與相對佈局或任何你想要的:)
0
我居然跑到創建另一個活動。也許這不是我想要的(第一個Activity的內容將不會被新的Activity看到),但是當新的Activity被按下Back按鈕時,至少它的狀態似乎會被保留。
相關問題
- 1. RelativeLayout而不是頂部
- 2. 透明的RelativeLayout位於surfaceview的「頂部」?
- 3. RelativeLayout的小孩頂部即將爲零
- 4. 如何識別活動中的RelativeLayout
- 5. Android,RelativeLayout在同一RelativeLayout中更改ImageView時重新啓動Marquee-TextView
- 6. 使用RelativeLayout自定義子項RelativeLayout添加到活動
- 7. 的RelativeLayout滾動
- 8. 將頂部imageView與一個relativeLayout的中心對齊
- 9. Android中的RelativeLayout的底部以及頂部的視圖定位
- 10. Android在頂部和中心在RelativeLayout中對齊圖像
- 11. RelativeLayout底部的兩個接近其他的按鈕 - Android
- 12. RelativeLayout中的ImageView有頂部和底部填充
- 13. 在RelativeLayout中移動android
- 14. Android - 在RelativeLayout中滾動
- 15. 在RelativeLayout中移動ImageView
- 16. 在RelativeLayout中動畫ImageView
- 17. 如何將TextView放置在另一個RelativeLayout的RelativeLayout中?
- 18. 如何將RelativeLayout放置在RelativeLayout的底部?
- 19. 在RelativeLayout中的WebView
- 20. 從頂部的邊距不與RelativeLayout一起工作?
- 21. RelativeLayout總是在底部
- 22. RelativeLayout中的動畫滑落
- 23. RelativeLayout中的滾動視圖
- 24. Kepp中間RelativeLayout的滾動
- 25. RelativeLayout中的動態視圖
- 26. 的RelativeLayout在動態位置
- 27. 對齊視圖的頂部,另一種觀點的底部在RelativeLayout的
- 28. GridView使相同佈局中的其他控件在RelativeLayout中不可見
- 29. 中的RelativeLayout
- 30. ListView中的RelativeLayout
使用對話框與自定義佈局,我認爲最好的方式。 – hardartcore