首页 文章 精选 留言 我的

精选列表

搜索[代码生成],共10000篇文章
优秀的个人博客,低调大师

150行JavaScript代码实现增强现实

增强现实技术(Augmented Reality,简称 AR),是一种实时地计算摄影机影像的位置及角度并加上相应图像、视频、3D模型的技术,这种技术的目标是在屏幕上把虚拟世界套在现实世界并进行互动。这种技术1990年提出。随着随身电子产品CPU运算能力的提升,预期增强现实的用途将会越来越广。 本文介绍使用JavaScript开源框架AR.js实现的增强现实的Hello World例子。 先看效果: 首先在手机浏览器里打开我部署在github page上的这个demo应用: https://i042416.github.io/FioriODataTestTool2014/WebContent/098_ar.html 我用的是Android手机安装的Chrome浏览器。 打开网页,会提示你是否允许这个网页应用访问您的手机摄像头。点击允许: 用手机上

优秀的个人博客,低调大师

Android几行代码解决键盘遮挡问题

GitHub APK 将libray模块复制到项目中,或者直接在build.gradle中依赖: allprojects { repositories { maven { url 'https://jitpack.io' } } } dependencies { compile 'com.github.AnJiaoDe:Keyboard:V1.0.0' } 注意:如果sync报错,是因为和com.android.tools.build:gradle 3.0有关,可以改将compile改为implementation 或者api 1.scrollTo、scrollBy实现键盘不遮挡 使用方法: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:layout_width="match_parent" android:layout_height="44dp" android:background="@color/colorPrimary"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:text="提现" android:textColor="#ffffff" /> </RelativeLayout> <LinearLayout android:id="@+id/layout_content" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#E9F4FB" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="38dp" android:layout_marginLeft="15dp" android:layout_marginRight="15dp" android:gravity="center_vertical" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="可提余额:" android:textColor="#333333" android:textSize="15sp" /> <TextView android:id="@+id/tv_yue" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2000.00" android:textColor="#666666" android:textSize="14sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="元" android:textColor="#333333" android:textSize="14sp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_marginTop="20dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="手续费(0.6%):" android:textColor="#333333" android:textSize="15sp" /> <TextView android:id="@+id/tv_shouxufei" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="0.00" android:textColor="#666666" android:textSize="14sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="元" android:textColor="#333333" android:textSize="14sp" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_marginTop="20dp" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="提现方式:" android:textColor="#333333" android:textSize="15sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="3dp" android:text="支付宝" android:textColor="#666666" android:textSize="14sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="3dp" android:text="银行卡" android:textColor="#666666" android:textSize="14sp" /> </LinearLayout> <View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginTop="20dp" android:background="@color/line" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="11dp" android:gravity="center" android:text="申请提现金额" android:textColor="#333333" android:textSize="15sp" /> <LinearLayout android:id="@+id/layout_et" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="23dp" android:layout_marginRight="23dp" android:layout_marginTop="13dp" android:orientation="vertical"> <View android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"/> <EditText android:id="@+id/et_jine" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:background="@null" android:gravity="center" android:hint="请输入提现金额" android:inputType="numberDecimal|number" android:maxLength="20" android:minHeight="44dp" android:textColorHint="#999999" android:textSize="14sp" /> <View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginTop="30dp" android:background="#A7ABB1" /> </LinearLayout> <Button android:id="@+id/tv_submit" android:layout_width="match_parent" android:layout_height="49dp" android:layout_marginLeft="38dp" android:layout_marginRight="38dp" android:layout_marginTop="33dp" android:gravity="center" android:text="确定" android:textColor="@color/white" android:textSize="16sp" /> </LinearLayout> </LinearLayout> </LinearLayout> public class EditTextActivity extends KeyboardActivity { private View layout_content; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_edit_text); layout_content=findViewById(R.id.layout_content); //设置监听器 setOnCYGlobalLayoutListener(new OnCYGlobalLayoutListener() { //键盘刚显示 @Override public void onKeyboardShowedNow(Rect rect) { //rect 可视区域 //screenHight-rect.bottom就是键盘高度 layout_content.scrollTo(0,screenHight-rect.bottom); } //键盘刚隐藏,可以对输入的内容进行修改 @Override public void onKeyboardHideNow() { layout_content.scrollTo(0,0); } }); } } 2.列表中的Edittext,利用假键盘实现键盘不遮挡 使用方法: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_modify_price2" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:background="@color/colorPrimary" android:layout_width="match_parent" android:layout_height="44dp"> <TextView android:layout_width="match_parent" android:gravity="center" android:layout_height="match_parent" android:text="修改价格" android:textColor="#ffffff" /> </RelativeLayout> <com.cy.cyrvadapter.recyclerview.VerticalRecyclerView android:id="@+id/vrv" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> <View android:id="@+id/view_keyboard" android:layout_width="match_parent" android:layout_height="0dp" /> </LinearLayout> public class RVEdittextActivity extends KeyboardMockActivity { private RVAdapter<String> rvAdapter; private View view_keybord; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_rvedittext); List<String> list = new ArrayList<>(); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); list.add("dojij"); rvAdapter = new RVAdapter<String>(list) { @Override public void bindDataToView(RVViewHolder holder, int position, String bean, boolean isSelected) { } @Override public int getItemLayoutID(int position, String bean) { return R.layout.item_price_modify; } @Override public void onItemClick(int position, String bean) { } }; //万能适配器:https://github.com/AnJiaoDe/RecyclerViewAdapter ((VerticalRecyclerView) findViewById(R.id.vrv)).setAdapter(rvAdapter); //设置监听器 setOnCYGlobalLayoutListener(view_keybord, new OnCYGlobalLayoutListener() { //键盘刚显示 @Override public void onKeyboardShowedNow(Rect rect) { } //键盘刚隐藏,可以对输入的内容进行修改 @Override public void onKeyboardHideNow() { } //假键盘高度 @Override public int getViewKeyboardHeight(Rect rect) { return screenHight-rect.bottom;//screenHight-rect.bottom就是键盘高度 } }); } } 源码: /** * Created by cy on 2018/9/6.,用在普通界面中的edittext */ public abstract class KeyboardActivity extends AppCompatActivity implements ViewTreeObserver.OnGlobalLayoutListener { public int screenHight = 0; private OnCYGlobalLayoutListener onCYGlobalLayoutListener; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); screenHight = ScreenUtils.getScreenHeight(getApplicationContext()); } @Override protected void onResume() { super.onResume(); addGlobal(); } @Override protected void onStop() { super.onStop(); removeGlobal(); } private void addGlobal() { if (onCYGlobalLayoutListener!=null) getWindow().getDecorView().getViewTreeObserver().addOnGlobalLayoutListener(this); } private void removeGlobal() { getWindow().getDecorView().getViewTreeObserver().removeOnGlobalLayoutListener(this); } @Override public void onGlobalLayout() { // CYLogUtils.log("布局变化", "---------------------------------------"); Rect r = new Rect(); //获取当前界面可视部分 getWindow().getDecorView().getWindowVisibleDisplayFrame(r); //如果屏幕高度和Window可见区域高度差值大于整个屏幕高度的1/3,则表示软键盘显示中,否则软键盘为隐藏状态。 // int heightDifference = screenHeight - (r.bottom - r.top); boolean isKeyboardShowing = r.bottom < ScreenUtils.getScreenHeight(getApplicationContext()); if (isKeyboardShowing) { // Toast.makeText(this, "键盘显示", Toast.LENGTH_SHORT).show(); removeGlobal(); onCYGlobalLayoutListener.onKeyboardShowedNow(r); //会导致布局不断刷新,无限制回调当前方法,所以做延迟回调处理 new Handler().postDelayed(new Runnable() { @Override public void run() { addGlobal(); } }, 100); } else { // Toast.makeText(this, "键盘隐藏", Toast.LENGTH_SHORT).show(); removeGlobal(); onCYGlobalLayoutListener.onKeyboardHideNow(); //会导致布局不断刷新,无限制回调当前方法,所以做延迟回调处理 new Handler().postDelayed(new Runnable() { @Override public void run() { addGlobal(); } }, 100); } } public int getScreenHight() { return screenHight; } /** * @param onCYGlobalLayoutListener */ public void setOnCYGlobalLayoutListener( OnCYGlobalLayoutListener onCYGlobalLayoutListener) { this.onCYGlobalLayoutListener = onCYGlobalLayoutListener; addGlobal(); } public interface OnCYGlobalLayoutListener { public void onKeyboardShowedNow(Rect rect);//键盘刚显示 public void onKeyboardHideNow();//键盘刚隐藏 } } /** * Created by cy on 2018/9/6.,假键盘,用在列表中的edittext */ public abstract class KeyboardMockActivity extends AppCompatActivity implements ViewTreeObserver.OnGlobalLayoutListener { private View view_keyboard; public int screenHight = 0; private OnCYGlobalLayoutListener onCYGlobalLayoutListener; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); screenHight = ScreenUtils.getScreenHeight(getApplicationContext()); } @Override protected void onResume() { super.onResume(); addGlobal(); } @Override protected void onStop() { super.onStop(); removeGlobal(); } private void addGlobal() { if (view_keyboard == null) return; getWindow().getDecorView().getViewTreeObserver().addOnGlobalLayoutListener(this); } private void removeGlobal() { getWindow().getDecorView().getViewTreeObserver().removeOnGlobalLayoutListener(this); } @Override public void onGlobalLayout() { if (view_keyboard == null) { removeGlobal(); return; } // CYLogUtils.log("布局变化", "---------------------------------------"); Rect r = new Rect(); //获取当前界面可视部分 getWindow().getDecorView().getWindowVisibleDisplayFrame(r); //如果屏幕高度和Window可见区域高度差值大于整个屏幕高度的1/3,则表示软键盘显示中,否则软键盘为隐藏状态。 // int heightDifference = screenHeight - (r.bottom - r.top); boolean isKeyboardShowing = r.bottom < ScreenUtils.getScreenHeight(getApplicationContext()); if (isKeyboardShowing) { if (view_keyboard.getVisibility() == View.VISIBLE) return; // Toast.makeText(this, "键盘显示", Toast.LENGTH_SHORT).show(); removeGlobal(); LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) view_keyboard.getLayoutParams(); layoutParams.height = onCYGlobalLayoutListener.getViewKeyboardHeight(r); view_keyboard.setVisibility(View.VISIBLE); onCYGlobalLayoutListener.onKeyboardShowedNow(r); //会导致布局不断刷新,无限制回调当前方法,所以做延迟回调处理 new Handler().postDelayed(new Runnable() { @Override public void run() { addGlobal(); } }, 100); } else { // Toast.makeText(this, "键盘隐藏", Toast.LENGTH_SHORT).show(); if (view_keyboard.getVisibility() == View.GONE) return; removeGlobal(); view_keyboard.setVisibility(View.GONE); onCYGlobalLayoutListener.onKeyboardHideNow(); //会导致布局不断刷新,无限制回调当前方法,所以做延迟回调处理 new Handler().postDelayed(new Runnable() { @Override public void run() { addGlobal(); } }, 100); } } public int getScreenHight() { return screenHight; } /** * @param view_keyboard 假键盘布局,使用时必须自行设置其高度,以满足 需要 * @param onCYGlobalLayoutListener */ public void setOnCYGlobalLayoutListener(View view_keyboard, OnCYGlobalLayoutListener onCYGlobalLayoutListener) { this.view_keyboard = view_keyboard; this.onCYGlobalLayoutListener = onCYGlobalLayoutListener; addGlobal(); } public interface OnCYGlobalLayoutListener { public void onKeyboardShowedNow(Rect rect);//键盘刚显示 public void onKeyboardHideNow();//键盘刚隐藏 public int getViewKeyboardHeight(Rect rect);//返回假键盘的高度,rect 可视区域 } } GitHub 关注专题Android开发常用开源库简书 微信公众号 QQ群

优秀的个人博客,低调大师

建立缓存,防高并发代码demo

我在之前的博客中提到过——缓存并发,当一个key过期时,访问这个key的请求量过大,穿透到数据库.解决办法:1,分布式锁,保证每个key同时只有一个线程去查询数据库,其他线程没有获得分布式锁的权限,只需要等待.具体实现如下@Overridepublic AppUser findById(Long id) { if (redisService.exists("user:" + id)) { String appUserStr = redisService.get("user:" + id); return JSONObject.parseObject(appUserStr,AppUser.class); } else { //获取分布式锁 if (RedisTool.tryGetDistributedLock(redisService,"useridlock:" + id,Long.toString(id),180)) { AppUser appUser = appUserDao.findById(id); redisService.set("user:" + id, JSONObject.toJSONString(appUser)); redisService.expire("user:" + id, 864000); //释放分布式锁 RedisTool.releaseDistributedLock(redisService,"useridlock:" + id,Long.toString(id)); return appUser; } else { //无获得分布式锁权限时 try { //当前线程休眠1秒,可根据适当情况调整这个休眠时间 Thread.currentThread().sleep(1000); if (redisService.exists("user:" + id)) { String appUserStr = redisService.get("user:" + id); return JSONObject.parseObject(appUserStr,AppUser.class); }else { return null; } } catch (InterruptedException e) { e.printStackTrace(); return null; } } } }Redis分布式锁的写法可参考本人上一篇博客,谢谢!

资源下载

更多资源
腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

Rocky Linux

Rocky Linux

Rocky Linux(中文名:洛基)是由Gregory Kurtzer于2020年12月发起的企业级Linux发行版,作为CentOS稳定版停止维护后与RHEL(Red Hat Enterprise Linux)完全兼容的开源替代方案,由社区拥有并管理,支持x86_64、aarch64等架构。其通过重新编译RHEL源代码提供长期稳定性,采用模块化包装和SELinux安全架构,默认包含GNOME桌面环境及XFS文件系统,支持十年生命周期更新。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册