0
A
回答
1
創建延伸類對話框,它充氣佈局
public class CustomDialog extends Dialog
{
public CustomDialog (Context context)
{
//use this Theme, or any other theme you like
super(context, android.R.style.Theme_Translucent_NoTitleBar);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.your_layout);
}
}
0
0
您可以隨時膨脹自己的自定義對話框佈局。
LayoutInflater inflater = getLayoutInflater();
View dialoglayout = inflater.inflate(R.layout.dialog_layout, (ViewGroup) findViewById(R.id.dialog_layout_root));
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialoglayout);
1
您可以使用自定義對話框並將設計的xml充氣到其中。
final Dialog yourDialog=new Dialog(context);
thumbnail_click.setContentView(R.layout.yourlayout);
0
如果你還沒有得到一個答案,這裏是一個很好的toturial:Toturial
您VILL需要使自己的XML形式的文件,並使用邊角功能例如:
<corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" />
相關問題
- 1. 我怎樣才能讓AngularJS綁定一個fancybox對話框?
- 2. WPF - 我怎樣才能使一個自定義邊框
- 3. 我怎樣才能讓我的提醒對話在Android的自定義提醒
- 4. 我怎樣才能讓側邊欄
- 5. 我怎樣才能讓網站鏈接在警告對話框
- 6. 我怎樣才能得到一個特定的邊緣oracle
- 7. 我怎樣才能讓自定義導航欄透明的RNRF
- 8. 我怎樣才能讓
- 9. 我怎樣才能使對話框動態定時器在android
- 10. 我怎樣才能讓ToolStripDropDownButton對齊到StatusStrip的右邊?
- 11. 我怎樣才能讓div浮動在對方旁邊?
- 12. Android上的自定義對話框:我怎樣才能讓它的標題居中?
- 13. Android對話框標題框我怎樣才能使它更小
- 14. Android AlertDialog我怎樣才能識別出對話框的對象
- 15. 我怎樣才能讓邊界左邊的高度?
- 16. 我怎樣才能讓這樣的
- 17. 我怎樣才能讓IE,Firefox,Chrome對齊輸入文本框?
- 18. 我怎樣才能爲styleBar的UINavigationBar創建自定義樣式?
- 19. 使用ASP.NET,我怎樣才能通過同一個對話框
- 20. 我怎樣才能單元測試jQuery對話框顯示?
- 21. 我怎樣才能在ngDialog中設置對話框寬度
- 22. 我怎樣才能讓我的自定義指令的NG-重複
- 23. Mongoid:我怎樣才能讓Mongoid識別我的自定義ActiveModel驗證?
- 24. 我怎樣才能讓邊界只在一邊跨越一定的長度?
- 25. 我怎樣才能使用我的自定義下拉多次
- 26. 我怎樣才能讓我的chatbot談話第一?
- 27. 怎樣才能讓android中
- 28. 我怎樣才能讓在Plone
- 29. 我怎樣才能讓在ActiveReports中
- 30. 我怎樣才能讓這個更好
以及如何實現按鈕和複選框?代碼:final CheckBox check =(CheckBox)dialog.findViewById(R.id.checkBox1);不會工作 – 2012-02-18 10:38:53
您應該將其稱爲root_layout.findViewById,其中根佈局是您已經膨脹的主佈局。 – 2012-02-18 10:46:02
我該怎麼解僱對話? – 2012-02-18 10:51:08