Android API demos 阅读笔记 1

 代码很简单,所有奥秘都在AndroidManifest.xml里面。

 

加上这句话即可:android:theme="@android:style/Theme.Dialog"。

 

相关的文档参考,从下面得到:

Dev Guide -> Framework Topic ->Applying Styles and Themes.

 

To set this theme for all the activites of your application, open the AndroidManifest.xml file and edit the <application> tag to include the android:theme attribute with the theme name:

 

另外,也可以用代码实现。

 

在onCreate中,

setTheme(android.R.style.***);

 

可以试试,有多种效果可以选择哦。

如 Translucent 就是半透明效果

你可能感兴趣的:(android,api,application,文档,include,styles)