标签:android style ar color sp java on div log
activity 想要窗口化 在AndroidManifest.xml 设置 theme 属性
<activity
android:name="zicox.ui.activity.SearchPrinter"
android:theme="@android:style/Theme.Dialog">
</activity>
其实影藏 activity 就是隐藏 activity 的view.
先找到方法 获取activity rootView
private static View get_root_view(Activity context) { return ((ViewGroup)context.findViewById(android.R.id.content)).getChildAt(0); }
get_root_view(context).setVisibility(View.VISIBLE); //显示view
标签:android style ar color sp java on div log
原文地址:http://blog.csdn.net/jilong17/article/details/42002255