02 2022 档案

摘要:安卓app_sl4_6图像切换器转换器 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:or 阅读全文
posted @ 2022-02-28 13:07 txwtech 阅读(46) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl4_4星级评分条示范代码 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android 阅读全文
posted @ 2022-02-27 21:35 txwtech 阅读(35) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl4_3拖动条示范代码 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:l 阅读全文
posted @ 2022-02-27 21:19 txwtech 阅读(40) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl4_2水平进度条与圆形进度条_与线程的启动 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools 阅读全文
posted @ 2022-02-27 14:31 txwtech 阅读(24) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl4_1带自动提示的输入框_自动完成文本框的示范 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/too 阅读全文
posted @ 2022-02-27 11:04 txwtech 阅读(56) 评论(0) 推荐(0) 编辑
摘要:c# HexStringtoByte十六进制字符串转字节与modusCRC校验 public static byte[] hexStrTobyte(string hexString) { hexString = hexString.Replace(" ", ""); if ((hexString.L 阅读全文
posted @ 2022-02-24 08:15 txwtech 阅读(1238) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/txwtech/p/15913845.html 图标在左文字在右 <?xml version="1.0" encoding="utf-8"?> <!-- items.xml --> <LinearLayout xmlns:android="http:/ 阅读全文
posted @ 2022-02-23 21:51 txwtech 阅读(26) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_28同意显示开始按钮示范 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andro 阅读全文
posted @ 2022-02-23 21:05 txwtech 阅读(35) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_27通过ImageView显示带边边框的图片 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/to 阅读全文
posted @ 2022-02-23 20:46 txwtech 阅读(51) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_26练习_猜猜鸡蛋在哪只鞋子里面 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andr 阅读全文
posted @ 2022-02-20 16:38 txwtech 阅读(51) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_25同意游戏条款功能示范 package com.example.sl3_25; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.vie 阅读全文
posted @ 2022-02-20 11:56 txwtech 阅读(80) 评论(0) 推荐(0) 编辑
摘要:参考: https://doc.xuehai.net/bcc052224fb42561c87900fd9.html 找到安装目录Rockwell Software--FactoryTalk Tools--FactoryTalk Directory Configuration Wizard 打开这个配 阅读全文
posted @ 2022-02-20 10:37 txwtech 阅读(1297) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_24实现带图标的ListView列表视图 //实现带图标的ListView列表视图 //MainActivity.java package com.example.sl3_24; import java.util.ArrayList; import java.util.HashM 阅读全文
posted @ 2022-02-19 22:12 txwtech 阅读(68) 评论(0) 推荐(0) 编辑
摘要:android从入门到精通pdf 明日科技 链接: https://pan.baidu.com/s/1dGSkbCl 密码: wpaa (失效) 链接:https://pan.baidu.com/s/1AL9EY2UXJoqKy8D1f5uI5A 密码:np8i 阅读全文
posted @ 2022-02-19 21:37 txwtech 阅读(390) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_22计时器_显示当前时间_系统时间 package com.example.sl3_22; import java.text.SimpleDateFormat; import java.util.Date; import android.app.Activity; import 阅读全文
posted @ 2022-02-19 20:56 txwtech 阅读(66) 评论(0) 推荐(0) 编辑
摘要:eclipse 安卓app开发环境搭建 参考连接: https://blog.csdn.net/wqh0830/article/details/86241458 Android开发环境搭建可以分为以下四步: 第一步、安装JDK; 第二步、安装Eclipse; 第三步、下载并安装AndroidSDK; 阅读全文
posted @ 2022-02-19 16:02 txwtech 阅读(1888) 评论(0) 推荐(0) 编辑
摘要:eclipse如何新建安卓app项目程序 阅读全文
posted @ 2022-02-19 15:46 txwtech 阅读(141) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_21日期拾取器,为时间拾取器设置监听器 package com.example.sl3_21; import java.util.Calendar; import android.app.Activity; import android.os.Bundle; import and 阅读全文
posted @ 2022-02-19 15:40 txwtech 阅读(54) 评论(0) 推荐(0) 编辑
摘要:<!-- sl3_19 --> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layo 阅读全文
posted @ 2022-02-18 22:22 txwtech 阅读(30) 评论(0) 推荐(0) 编辑
摘要:获取选中额选项的值。 <!-- array.xml --> <resources> <!-- Base application theme, dependent on API level. This theme is replaced by AppBaseTheme from res/values- 阅读全文
posted @ 2022-02-18 21:43 txwtech 阅读(31) 评论(0) 推荐(0) 编辑
摘要:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_pa 阅读全文
posted @ 2022-02-18 20:30 txwtech 阅读(24) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3_15复选框按钮示范 package com.example.sl3_15; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.Me 阅读全文
posted @ 2022-02-17 21:21 txwtech 阅读(26) 评论(0) 推荐(0) 编辑
摘要:package com.example.sl3_14; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import andr 阅读全文
posted @ 2022-02-17 20:24 txwtech 阅读(34) 评论(0) 推荐(0) 编辑
摘要:图像按钮android:onClick="myClick"对应MainActivity.java的myClick方法,点击按钮显示toast提示消息后自动消失 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/androi 阅读全文
posted @ 2022-02-17 19:48 txwtech 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-17 08:00 txwtech 阅读(29) 评论(0) 推荐(0) 编辑
摘要:获取编辑框的值 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="m 阅读全文
posted @ 2022-02-16 22:25 txwtech 阅读(67) 评论(0) 推荐(0) 编辑
摘要:安卓app_sl3.10游戏界面设计按钮点击事件-toast notification-点击进入弹出消息自动关闭 package com.example.sl3_10; import android.app.Activity; import android.os.Bundle; import and 阅读全文
posted @ 2022-02-15 22:24 txwtech 阅读(37) 评论(0) 推荐(0) 编辑
摘要:eclipse无法加载Layout(Eclipse is loading framework information and the layout library from the SDK fold) 通过SDK Manageer删除所下载的Android下的SDK platform,再重新下载安装 阅读全文
posted @ 2022-02-15 13:21 txwtech 阅读(346) 评论(0) 推荐(0) 编辑
摘要:style.xml <?xml version="1.0" encoding="utf-8"?> <resources> <style name="text"> <item name="android:textColor">#000</item> <item name="android:textSi 阅读全文
posted @ 2022-02-14 22:03 txwtech 阅读(132) 评论(0) 推荐(0) 编辑
摘要:相对布局是按照组件之间的相对位置来进行布局,如某个组件在另外一个组件的左边,右边,上边或下边 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas. 阅读全文
posted @ 2022-02-13 21:46 txwtech 阅读(37) 评论(0) 推荐(0) 编辑
摘要:帧布局管理器,每加入一个组件,都将创建一个空白的区域,通常称为一帧,这些帧都会根据gravity(对齐方式)属性执行自动对齐。默认情况下,帧布局从屏幕的左上角(0,0)坐标点开始布局,多个组件层叠排序,后面的组件覆盖前面的组件。 经常用于游戏开发中,用于显示自定义的视图 例如: https://ww 阅读全文
posted @ 2022-02-13 21:22 txwtech 阅读(73) 评论(0) 推荐(0) 编辑
摘要:<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_par 阅读全文
posted @ 2022-02-13 20:49 txwtech 阅读(35) 评论(0) 推荐(0) 编辑
摘要:最近在用模拟器调试android项目时,频繁出现以下错误提示: Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGEPlease check logcat output for more details.Launch canceled! 也知 阅读全文
posted @ 2022-02-12 22:39 txwtech 阅读(255) 评论(0) 推荐(0) 编辑
摘要:、、 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match 阅读全文
posted @ 2022-02-12 14:53 txwtech 阅读(32) 评论(0) 推荐(0) 编辑
摘要:<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_par 阅读全文
posted @ 2022-02-12 14:13 txwtech 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-12 11:19 txwtech 阅读(126) 评论(0) 推荐(0) 编辑
摘要:@Override是Java5的元数据,自动加上去的一个标志,告诉你说下面这个方法是从父类/接口 继承过来的,需要你重写一次,这样就可以方便你阅读,也不怕会忘记 @Override是伪代码,表示重写(当然不写也可以),不过写上有如下好处: 1>可以当注释用,方便阅读 2>编译器可以给你验证@Over 阅读全文
posted @ 2022-02-12 11:15 txwtech 阅读(179) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_29440353/article/details/89327485 阅读全文
posted @ 2022-02-12 10:47 txwtech 阅读(31) 评论(0) 推荐(0) 编辑
摘要:Call to WHvSetupPartition failed: ERROR_SUCCESS (Last=0xc000000d/87) (VERR_NEM_VM_CREATE_FAILED) 解决win10 WSL2 引起 VirtualBox 启动问题 罪魁祸首:https://docs.mic 阅读全文
posted @ 2022-02-11 09:59 txwtech 阅读(755) 评论(0) 推荐(0) 编辑
摘要:package com.example.sl3_3; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import andro 阅读全文
posted @ 2022-02-10 21:33 txwtech 阅读(83) 评论(0) 推荐(0) 编辑
摘要:package com.example.sl3_2a; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.graphi 阅读全文
posted @ 2022-02-10 20:37 txwtech 阅读(26) 评论(0) 推荐(0) 编辑
摘要:eclipse如何新建安卓app项目程序 eclipse如何新建安卓app项目程序 <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/androi 阅读全文
posted @ 2022-02-10 20:14 txwtech 阅读(18) 评论(0) 推荐(0) 编辑
摘要:安卓app2022-02-10 20:03:09 - sl3_1] E:\Users\t\workspace\sl3_1\res\layout\activity_main.xml:8: error: Error: No resource found that matches the given na 阅读全文
posted @ 2022-02-10 20:06 txwtech 阅读(104) 评论(1) 推荐(0) 编辑
摘要:private void UpdateCurrentTimer(object sender, System.Timers.ElapsedEventArgs e) { System.DateTime currentTime = new System.DateTime(); currentTime = 阅读全文
posted @ 2022-02-10 17:01 txwtech 阅读(501) 评论(0) 推荐(0) 编辑
摘要:Android ADT 下载 ( ADT-23.0.7 ) https://www.androiddevtools.cn/ https://dl.google.com/android/ADT-23.0.7.ziphttps://dl.google.com/android/ADT-23.0.6.zip 阅读全文
posted @ 2022-02-10 09:08 txwtech 阅读(771) 评论(0) 推荐(0) 编辑
摘要:导入如下信息 import android.widget.FrameLayout;import android.widget.FrameLayout.LayoutParams; LayoutParams params = new LayoutParams( ViewGroup.LayoutParam 阅读全文
posted @ 2022-02-09 22:04 txwtech 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-09 19:33 txwtech 阅读(54) 评论(0) 推荐(0) 编辑
摘要:其他版本删除,只安装25.0.2 阅读全文
posted @ 2022-02-08 22:12 txwtech 阅读(388) 评论(0) 推荐(0) 编辑
摘要:打开android sdk manager,勾选android 4.0.3及以上版本,进行安装 阅读全文
posted @ 2022-02-08 20:06 txwtech 阅读(238) 评论(0) 推荐(0) 编辑
摘要:单位从小到大排序:Byte、KB、MB、GB、TB、PB、EB、ZB、YB、DB、NB 进率10241Byte = 8 Bit 1KB = 2的10次方Byte=1,024 Bytes 1MB = 2的20次方Byte=1,024 KB = 1,048,576 Bytes 1GB = 2的30次方B 阅读全文
posted @ 2022-02-08 16:09 txwtech 阅读(2842) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示