`
文章列表
You need to do following steps for adding a USB Controller # Open the virtual machine settings editor and choose VM > Settings.# Click Add to create the New Hardware Wizard. # Click to Next button. The Hardware Type screen appears.# Select USB Controller and then click Next. # If you don't desire ...
final WebView browser = (WebView)findViewById(R.id.browser);   /* JavaScript must be enabled if you want it to work, obviously */   browser.getSettings().setJavaScriptEnabled(true);  
pc键盘  android键盘 Home  主屏/HomeESC   返回键/backF2    菜单/menu键F3    拨号键F4    挂断键F5    搜索键F6    滚轮F7    锁屏F8    禁止网络
原因是根目录下有一个default.properties 的文件,里面有指定项目的target,这个target在我的系统中没有,我系统中有android-8的,于是把这个值改成android-8,保存后再运行项目,就可以了。
以下文章纯属转载; 这段时间在学Android应用开发,在想既然是用Java开发的应该很好反编译从而得到源代码吧,google了一下,确实很简单,以下是我的实 践过程。在此郑重声明,贴出来的目的不是为了去破解人家的软件,完全是一种学习的态度,不过好像通过这种方式也可以去汉化一些外国软件。 一.反编译Apk得到Java源代码 首先要下载两个工具:dex2jar和JD-GUI,前者是将apk中的classes.dex转化成Jar文件,而JD-GUI是一个反编译工 具,可以直接查看Jar包的源代码。以下是下载地址:dex2jar:http://laichao.googlecode.com/f ...

C#格式化日期

        DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 Label2.Text = dt.ToFileTime().ToString();//127756416859912816 Label3.Text = dt.ToFileTimeUtc().ToString();//127756704859912816 Label4.Text = dt.ToLocalTime().ToString();//2005-11-5 21:21:25 Label5.Text = dt. ...
在之前的版本中,只有一个drawable,而2.1版本中有drawable-mdpi、drawable-ldpi、drawable-hdpi三个,这三个主要是为了支持多分辨率。   drawable- hdpi、drawable- mdpi、drawable-ldpi的区别:   (1)drawable-hdpi里面存放高分辨率的图片,如WVGA (480x800),FWVGA (480x854)   (2)drawable-mdpi里面存放中等分辨率的图片,如HVGA (320x480)   (3)drawable-ldpi里面存放低分辨率的图片,如QVGA (240x320) ...
  (1) [2011-06-23 18:59:27 - LayoutTest] Device 'SH11DPL07948' requires that applications explicitely declare themselves as debuggable in their manifest. [2011-06-23 18:59:27 - LayoutTest] Application 'com.test' does not have the attribute 'debuggable' set to TRUE in its manifest and cannot be deb ...

图像变成黑白

    博客分类:
  • C#
在写代码之前,先在工程的 属性-->生成-->勾选 “允许不安全代码“       public Bitmap ConvertBmp(System.Drawing.Bitmap bmp, int mode) { bool ret = true; int w = bmp.Width; int h = bmp.Height; try { byte newColor = 0; ...
编辑相关快捷键 ITPUB个人空间+D(^ ^Z'{Dk ITPUB个人空间%lT3`0o!`i{    Eclipse的编辑功能非常强大,掌握了Eclipse快捷键功能,能够大大提高开发效率。Eclipse中有如下一些和编辑相关的快捷键。ITPUB个人空间aq5W7UrnU    1. 【ALT+/】ITPUB个人空间lN7i-E5xd    此快捷键为用户编辑的好帮手,能为用户提供内容的辅助,不要为记不全方法和属性名称犯愁,当记不全类、方法和属性的名字时,多体验一下【ALT+/】快捷键带来的好处吧。ITPUB个人空间\ fQ tw'pe 0y/gSr.yh-V(~m0 ...
设置GPS是否为可找开状态,未打开 private void toggleGPS() { Intent gpsIntent = new Intent(); gpsIntent.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider"); gpsIntent.addCategory("android.intent.category.ALTERNATIVE"); gpsInte ...
 Android手机配置:   1.安装好Android USB Driver,并且通过USB连接手机和PC。   注:Windows 7 会自动安装手机驱动,Windows XP 选择自带的Android手机的USB ADB Interface安装即可。   2.进入手机界面,依次选择 菜单 -> 设置 -> 应用程序 -> 开发 -> 勾选“USB调试”。   Eclipse配置:   进入Eclipse IDE 开发环境,菜单上依次选择 Window -> Show View -> Other -> Android -> D ...
public partial class Form1 : Form { int X_Value; // Stores position of Horizontal scroll bar int Y_Value; // Stores position of Vertical scroll bar public Form1() { InitializeComponent(); this.Scroll+=new ScrollEventHandler(form1_Sc ...
/// <summary> /// 获取两日期之间的年,月,日数 /// </summary> /// <param name="startDate"></param> /// <param name="endDate"></param> /// <returns></returns> public static IDictionary&l ...
最近做一个曲线统计图,其中在默认的情况下生成的图片是质量不高的,最好更改了一些属性实现了,图片,文字的高清晰的现实,一下是一些总结: 对于GDI+,在正常的操作,Bitmap,Graphcis,DrawImage或者DrawString ,生成图片的话,会产生很多杂点,或者是图片质量不稳定..尤其是在读取图片后,生成缩略图之后,文件会被压缩而失真.. 主要原因是因为没有重新设置Graphics的几个属性.. 1.Graphics.SmoothingMode属性: 例如SmoothingMode.HighQuality可以产生高质量图片,但是效率低. 2.Graphics.Composit ...
Global site tag (gtag.js) - Google Analytics