上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

2017年10月28日

Android Studio解决Java程序输出中文乱码

摘要: 经查阅资料,发现需要手动在build.gradle中添加代码 //新版 tasks.withType(JavaCompile) { options.encoding = "UTF-8" } //旧版,以gradle-1.12为例 tasks.withType(Compile) { options.e 阅读全文

posted @ 2017-10-28 14:45 yaolunhui 阅读(1295) 评论(0) 推荐(0) 编辑

android studio 导出的jar中没有主清单属性

摘要: 问题:android studio 工程的module 生成的jar包,在执行中出现“没有主清单属性”错误。 解决办法: 原因:MANIFEST.MF中的没有Main-Class 在对应的module中的gradle文件中加入: 阅读全文

posted @ 2017-10-28 12:19 yaolunhui 阅读(1738) 评论(0) 推荐(0) 编辑

2017年9月1日

让Double类型完整显示,不用科学计数法显示E

摘要: DecimalFormat df = new DecimalFormat("0"); Double d = new Double("4.99958333E7"); System.out.println(df.format(d)); 阅读全文

posted @ 2017-09-01 18:55 yaolunhui 阅读(851) 评论(0) 推荐(0) 编辑

2017年6月18日

kotlin新工程

摘要: 添加plugs 搜索kotlin,添加插件,重启android studio 增加不需要 findViewById 第二步:项目添加: 阅读全文

posted @ 2017-06-18 17:47 yaolunhui 阅读(117) 评论(0) 推荐(0) 编辑

2017年6月13日

adb无线调试手机

摘要: 找到地址: C:\Users\yao\AppData\Local\Android\sdk\platform-tools\adb.exe 第一步手机和电脑链接 C:\Users\yao\AppData\Local\Android\sdk\platform-tools\adb.exe tcpip 555 阅读全文

posted @ 2017-06-13 11:18 yaolunhui 阅读(117) 评论(0) 推荐(0) 编辑

2017年6月2日

动态移动控件位置

摘要: FrameLayout.LayoutParams btnLp = (FrameLayout.LayoutParams)button.getLayoutParams(); btnLp.setMargins(newLeft, newTop, newRight, newBottom); button.re 阅读全文

posted @ 2017-06-02 10:36 yaolunhui 阅读(90) 评论(0) 推荐(0) 编辑

2017年5月31日

//延迟两秒跳转 new handler().postDelayed

摘要: //延迟两秒跳转 new Handler().postDelayed(new Runnable() { @Override public void run() { Intent intent=new Intent(MainActivity.this, Leansons.class); startAc 阅读全文

posted @ 2017-05-31 18:01 yaolunhui 阅读(162) 评论(0) 推荐(0) 编辑

Bitmap转圆形图片Bitmap

摘要: private Bitmap toRoundBitmap(Bitmap bitmap) { //--Bitmap转圆形图片Bitmap int width = bitmap.getWidth(); int height = bitmap.getHeight(); float roundPx; flo 阅读全文

posted @ 2017-05-31 15:41 yaolunhui 阅读(201) 评论(0) 推荐(0) 编辑

//--合并两张图片 BITMAP

摘要: private Bitmap toConformBitmap(Bitmap background, Bitmap foreground) { //--合并两张图片 if( background == null ) { return null; } int bgWidth = background.g 阅读全文

posted @ 2017-05-31 15:41 yaolunhui 阅读(401) 评论(0) 推荐(0) 编辑

在代码中修改TextView的DrawableRight图片

摘要: <TextView android:id="@+id/textciew1" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#000" android:drawa 阅读全文

posted @ 2017-05-31 14:38 yaolunhui 阅读(606) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

导航