样式一: 1 styles.xml 2 3 styles.xml样式二: 1 styles.xml圆角设置:1 filled_box.xml2 3 4 5 6 7 9 filled_box.xml显示:Dialog dialog = new D...
分类:
其他好文 时间:
2014-07-22 22:43:34
阅读次数:
231
此实例实现的功能:在一个树形控件中显示鸡啄米网站的简单结构分层,共有三层,分别为鸡啄米网站、各个分类和文章。用鼠标左键单击改变选中节点后,将选中节点的文本显示到编辑框中。下面是具体实现步骤:
1. 创建一个基于对话框的MFC工程,名称设置为“Example31”。
2. 在自动生成的对话框模板IDD_EXAMPLE31_DIALOG中,删除“TODO: Pl...
分类:
其他好文 时间:
2014-07-22 14:36:48
阅读次数:
372
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
WindowManager.LayoutParams params = dialog.getWindow().getAttributes();
params.width = 200;
params.height = 200 ;
dialog....
分类:
其他好文 时间:
2014-07-22 08:25:36
阅读次数:
176
# Android UI 之 Dialog 使用 ## 引言 在现在的应用程序中,Dialog 的应用十分广泛。常用于提示用户一些信息。 ![Dialog](https://raw.githubusercontent.com/thinkermao/MyBlog/master/res/Image/androidDialog...
分类:
移动开发 时间:
2014-07-22 08:13:36
阅读次数:
256
Android自定义类似ProgressDialog效果的Dialog.方法如下:1.首先准备两张自己要定义成哪样子的效果的图片和背景图片(也可以不要背景)。如我要的效果:2.定义loading_dialog.xml布局文件(这里你也可以按自己的布局效果定义,关键是要有个imageView):[ht...
分类:
移动开发 时间:
2014-07-20 22:20:31
阅读次数:
339
android中的style属性值
Android平台定义的主题样式:
android:theme="@android:style/Theme.Dialog" // 将一个Activity显示为对话框模式
android:theme="@android:style/Theme.NoTitleBar" // 不显示应用程序标题栏
android:theme="@android:sty...
分类:
移动开发 时间:
2014-07-19 23:14:09
阅读次数:
400
直接上效果图:
实现步骤:
1.主界面activity_main.xml很简单,一个按钮
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_wid...
分类:
移动开发 时间:
2014-07-19 18:27:19
阅读次数:
222
注意生成控制台程序,即-L/SUBSYSTEM:console 1 //This application demonstrates how to show a dialog in a console app. 2 3 #include 4 5 #include 6 7 class MyAp...
分类:
其他好文 时间:
2014-07-19 15:25:00
阅读次数:
182
finalMyDialogdialog=newMyDialog(CouponsDetailActivity.this,R.style.MyDialogStyle);Viewview=LayoutInflater.from(CouponsDetailActivity.this).inflate(R.l...
分类:
其他好文 时间:
2014-07-18 12:13:37
阅读次数:
209
转载自:http://blog.csdn.net/myj0513/article/details/6827360背景: 新建了一个基于对话框的MFC程序,在主对话框中添加tabcontrol控件,又新建了两个Dialog(CDialog1和CDialog2),将它们设为tabcontrol控件的子对...
分类:
编程语言 时间:
2014-07-18 10:20:33
阅读次数:
243