首页 文章 精选 留言 我的

精选列表

搜索[通用文字识别],共10006篇文章
优秀的个人博客,低调大师

关于 AutoCompleteTextView 不输入文字就显示下拉

由于项目要做一个带有下拉提示的输入框,第一时间就想到了AutoCompleteTextView。但是需求和控件还是有一点出入,公司的需求为:点击输入框即可显示提示数据的数据。 我们知道 AutoCompleteTextView 有一个属性是 android:completionThreshold ,在代码中设置为 setThreshold(int)) ,但是默认情况下为输入框输入 2 个字符的时候才会开始提示,最低可以把这两个属性调整为 1,即输入一个字就进行提示。 在查找大量的资料之后我采用了如下的方式进行操作: public class MainActivity extends AppCompatActivity implements View.OnFocusChangeListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate (savedInstanceState); setContentView (R.layout.activity_main); AutoCompleteTextView tvDemo = findViewById (R.id.tv_demo); //设置弹出列表高度总高度 // tvDemo.setDropDownHeight (100); //设置弹出列表与输入框直接距离 tvDemo.setDropDownVerticalOffset (0); //设置下拉框颜色 tvDemo.setDropDownBackgroundResource (R.color.colorAccent); //设置弹出条目的每个条目高度 // tvDemo.setDropDownHeight (100); List<String> list = new ArrayList<> (); list.add ("aaa"); list.add ("bbb"); list.add ("ccc"); list.add ("ddd"); ArrayAdapter adapter = new ArrayAdapter (this, android.R.layout.simple_expandable_list_item_1, list); tvDemo.setAdapter (adapter); tvDemo.setOnFocusChangeListener (this); } @Override public void onFocusChange(View v, boolean hasFocus) { AutoCompleteTextView view = (AutoCompleteTextView) v; if (hasFocus) { view.showDropDown (); } } } 操作之后 但是细心的人会发现,进入界面就会弹出软键盘,看上去是不是感觉很不好,解决这个问题仅需要在 AutoCompleteTextView 的父布局内添加两个代码,即可解决问题 android:focusable="true" android:focusableInTouchMode="true" 完整的xml代码: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" tools:context=".MainActivity"> <AutoCompleteTextView android:id="@+id/tv_demo" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="1" android:hint="请输入内容" android:paddingEnd="10dp" android:paddingStart="10dp" /> </RelativeLayout>

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

android将图片和文字水平排列

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <?xmlversion= "1.0" encoding= "utf-8" ?> <LinearLayoutxmlns:android= "http://schemas.android.com/apk/res/android" android:layout_width= "match_parent" android:layout_height= "wrap_content" android:orientation= "horizontal" android:gravity= "center" > <ImageView android:id= "@+id/imageView4_1_1" android:layout_width= "wrap_content" android:layout_height= "wrap_content" android:src= "@drawable/ic_launcher" /> <TextView android:id= "@+id/textView4_1_1" android:layout_width= "match_parent" android:layout_height= "wrap_content" android:text= "textView" /> </LinearLayout> android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:gravity="center" 本文转自 matengbing 51CTO博客,原文链接:http://blog.51cto.com/matengbing/1882230

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

智能文档抽取系统,依靠OCR 视觉能力与大模型语义理解的融合,让机器不再仅仅识别文字,而是真正读懂合同内容

一份企业合同,看着是几页纸,背后藏着合作主体、金额、履约周期、违约责任等几十项关键信息。在很多企业里,法务、采购人员依旧要逐字翻阅、复制粘贴、手动录入台账。遇上扫描件、老合同、盖章压字、格式五花八门的协议,人工处理不仅耗时耗力,还很容易漏掉关键细节,埋下合规风险。

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

腾讯云软件源

腾讯云软件源

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

Rocky Linux

Rocky Linux

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

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

用户登录
用户注册