-
dictionary
android英语字典是手机中经常使用的应用。因此,在本文将结合Android来讨论如何实现一个Android版的英文词典。实现英文词典的方法很多。在本文使用了SQLite数据库来保存英文单词信息。系统通过SQLite数据库中保存的单词信息来查找到与指定英文对应的中文信息。(Android Dictionary of English is often used in mobile phone applications. Therefore, in this paper will be combined with Android to discuss how to implement a Android version of the English dictionary. A lot of ways to realize the English dictionary. In this paper, we use the SQLite to save the English word information. The system through the SQLite to save the word information to find the corresponding Chinese information with the specified english.)
- 2016-06-13 09:48:48下载
- 积分:1
-
android 标签云
android 标签云
- 2015-11-17下载
- 积分:1
-
AndroidMP3Recorder-master
安卓录音库,mp3的,适配所有cpu版本(Android recording library, MP3, adapted to all CPU versions)
- 2017-07-27 09:16:46下载
- 积分:1
-
简易的计算器
这是我在学习android时,完成的第一个作业,一个简单的计算器,也是我第一次上传交流,如果写的不好,还请各位大神多多指教。。。。。。。
- 2023-02-24 20:40:04下载
- 积分:1
-
健康生活,养身助手
完成了基本的界面,包括主界面,图形化界面等。页面比较人性化,操作简单实用。整体框架实用滑动窗口的设计理念,利用最小的空间实现极大地内容呈现。
- 2022-10-11 04:15:03下载
- 积分:1
-
Android 复制粘贴 直接可以用
此代码用于android开发者。具体实现了粘贴复制。没有任何bug。导入即可用。直接运行。
- 2022-01-22 17:36:37下载
- 积分:1
-
Android 自定义弹出式菜单栏源码下载
Android Custom Menu 弹出窗口式自定义菜单栏的实例源码,运行后通过轻触手机的菜单键,来唤出菜单窗口,再次点击菜单键,自定义弹出对话框则隐藏,菜单是布局在对话框窗口中的,在本例中,自定义弹出窗口继承PopupWindow,并封装有封装GridView组件和View 组件,GridView 为每个Item设置监听事件方法,部分代码先睹为快:
public CustomMenu(Activity activity, List menus) {
super(activity);
//View 样式文件R.layout.menu
view = activity.getLayoutInflater().inflate(R.layout.menu, null);
//实例化GridView组件
gvMenu = (GridView)view.findViewById(R.id.gv_menu);
//相关参数设置
this.setContentView(view);
this.setWidth(LayoutParams.FILL_PARENT);
this.setHeight(LayoutParams.WRAP_CONTENT);
//图片获取
Drawable drawable = activity.getResources().getDrawable(R.drawable.selector_focused_shape);
//相关特效设置
this.setBackgroundDrawable(drawable);
this.setAnimationStyle(R.style.PopupAnimation);
this.setFocusable(true);
//设置相关OnKeyListener事件
gvMenu.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_MENU)&&(isShowing())) {
dismiss();//关闭P
- 2022-10-12 07:55:03下载
- 积分:1
-
android 自绘switchButton
android 自绘switchButton
- 2014-01-10下载
- 积分:1
-
基于单片机的无刷直流电机控制
单片机实现无刷直流电机的调速控制
- 2021-05-07下载
- 积分:1
-
Android 手机端socket服务器接收数据的APP
Android手机端的socket服务器接收数据的代码
- 2022-03-18 04:21:53下载
- 积分:1