android Dialog怎样自定义属性?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android Dialog怎样自定义属性?相关的知识,希望对你有一定的参考价值。
如果我要改变Dialog应该如何实现呢
参考技术A 你只要继承Dialog,然后加个xm样式就可以了
样式:
<style
name="myDialogTheme"
parent="android:Theme.Dialog">
<!--
除去title
-->
<item
name="android:windowNoTitle">true</item>
</style>
重写Dialog
public
class
Mdi
extends
Dialog
public
Mdi(Context
context)
super(context);
public
Mdi(Context
context,int
style)
super(context,
style);
public
void
onCreate(Bundle
savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.mdi);
引用
Mdi
mdi
=
new
Mdi(FActivity.this,
R.style.myDialogTheme);
mdi.show();
以上是关于android Dialog怎样自定义属性?的主要内容,如果未能解决你的问题,请参考以下文章