完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。
能一次将大批量的、杂散的word、txt、图片和html文档编译进chm文件中。您所需做的工作就是创建工程、修改源目录、目标目录,然后执行工程就可以了,具体可以看帮助。"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。
本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。
软件大小:792.51 KB
用到的工具 1、CHM电子书反编译精灵http://www.skycn.com/soft/23903.html 2、XSCHMBuilder(CHM编译) V2.5 绿色汉化版http://www.cniso.org/soft/softdown.asp?softid=3798 方法就是先反编译CHM文档,然后修改,再编译为CHM文档
你的VISTA是什么版本的?只有ultimate版和企业版才能安装多国语言包.在控制面版里的自动更新项目下会自动下载. 然后在"语言与区域选项"做一下配置即可.(如果你的VISTA是其他版本是不能使用多国语言包的 )
我遇问题按照官文档做:https://developer.android.com/guide/topics/ui/notifiers/notifications.html应频繁更新操作放线程面(sdk文档原版代码):123456789101112131415161718192021222324252627282930313233343536373839...mNotifyManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);mBuilder = new NotificationCompat.Builder(this);mBuilder.setContentTitle("Picture Download") .setContentText("Download in progress") .setSmallIcon(R.drawable.ic_notification);// Start a lengthy operation in a background threadnew Thread( new Runnable() { @Override public void run() { int incr; // Do the "lengthy" operation 20 times for (incr = 0; incr <= 100; incr+=5) { // Sets the progress indicator to a max value, the // current completion percentage, and "determinate" // state mBuilder.setProgress(100, incr, false); // Displays the progress bar for the first time. mNotifyManager.notify(0, mBuilder.build()); // Sleeps the thread, simulating an operation // that takes time try { // Sleep for 5 <a href="https://www.baidu.com/s?wd=seconds&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1YLPjnvm1wWuH9WuW7bryFb0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EPjbznj6YPjmkPH0YrHbknHnz" target="_blank" class="baidu-highlight">seconds</a> Thread.sleep(5*1000); } catch (InterruptedException e) { Log.d(TAG, "sleep failure"); } } // When the loop is finished, updates the notification mBuilder.setContentText("Download complete") // Removes the progress bar .setProgress(0,0,false); mNotifyManager.notify(ID, mBuilder.build()); } }// Starts the thread by calling the run() method in its Runnable).start();
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this); Notification notification = mBuilder.build(); notification.sound = Uri.parse("your path");