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中的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
点显示进度条后→ android:max="100" 进度条的最大值 android:progress 进度条已经完成的进度值 android:progressDrawable 已经完成的进度条轨道显示的Drawable对象in...
分类:
其他好文 时间:
2014-07-19 15:23:13
阅读次数:
393
progress标签:从名字上来看,估计大家也能猜到这个标签是什么标签了,没错,他是一个进度条。在HTML5中我们终于可以不用模拟了。复制代码progress属性:value:表示当前进度max:表示总进度注:value和max属性的值必须大于0,value的值小于或等于max属性的值。案例: .....
分类:
Web程序 时间:
2014-07-18 14:28:53
阅读次数:
204
运行环境:开发环境:Windows7旗舰版64bit、VisualStudio2008 With SP1、ArcEngine10.0、NetFrameWork4.0、IIS7和C#开发语言。问题描述:通过AE编写的WebService在进行调试时,在网络进行流向初始化的时候发生错误“No edit ...
分类:
其他好文 时间:
2014-07-18 12:27:41
阅读次数:
249
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