-
android相对布局和绝对布局的使用
andorid中相对布局和绝对布局是五大布局中常用的两种,其中相对布局是用于控制控件之间相对位置的,绝对布局是用于控制控件在屏幕中的绝对位置的,但是这种绝对布局的方式不建议使用,因为会造成不适应各种版本屏幕的情况。
- 2022-05-25 17:19:42下载
- 积分:1
-
pinyin4jandroid-
pinyin4j Android拼音处理工具类,带文档,用于Android通讯录排序处理,实现按字母排序的功能,在通讯录中,要实现查找联系人按26个英文字母排序的功能,使用pinyin4j就可以很方便的实现此功能。(pinyin4j Android phonetic processing tools with documentation for Android address book sorting processing, sorting alphabetically functions in the address book, find the contact you want to achieve the sort function by 26 letters of the alphabet, you can easily use pinyin4j to achieve this functionality.)
- 2014-04-21 09:35:10下载
- 积分:1
-
AX_FileBrowser
android完整的文件浏览器模块,可以直接使用,方便高效(android full file browser module can be used directly, convenient and efficient)
- 2013-08-09 23:05:56下载
- 积分:1
-
android 单选菜单 menu实例 附源码
listview 单选菜单实例,详见截图
- 2013-03-03下载
- 积分:1
-
使用ESP8266 lua sciript继电器控制
esp8266模块esp-08
- 2022-11-07 07:30:03下载
- 积分:1
-
android优化大师 项目完整源代码下载
仅供大家学习交流使用
- 2013-08-28下载
- 积分:1
-
pglduisj
这是一款Android平台下的仿苹果通信界面UI源码,目前只是来电界面,去电因为没法发送DTMF,没法实现拨号盘功能,所以去电界面没实现,另外具备免提切换按键功能,希望能给大家带来帮助。 (This is a Android platform imitation Apple communication UI interface source code, currently only incoming interface to electricity because can t send DTMF, can not realize dialing disk function, so to electrical interface is not achieved, it also possess the hands-free key function switching, hope can bring a help to everybody.)
- 2016-05-25 19:17:39下载
- 积分:1
-
Android 屏幕旋转(改变屏幕方向)
Android 屏幕旋转实例,改变屏幕方向,这个和平时的锁定屏幕方向有关联,其基本的实现思路如下:
public void onConfigurationChanged(Configuration newConfig) {
Toast.makeText(this, "系统的屏幕方向发生改变", Toast.LENGTH_LONG).show();
updateEditText();//更新EditText显示的内容
super.onConfigurationChanged(newConfig);
}
public void updateEditText(){
int o = getRequestedOrientation();//获取屏幕朝向
switch(o){ //判断屏幕当前朝向
case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
et.setText("当前屏幕朝向为:PORTRAIT");
break;
case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
et.setText("当前屏幕朝向为:LANDSCAPE");
break;
}
}
- 2023-09-06 06:05:03下载
- 积分:1
-
the-architecture-of-Android
介绍了andriod系统源代码的层次结构(introduce the architecture of android source code )
- 2011-04-24 23:20:21下载
- 积分:1
-
Android上的Wordpress程序源码
Android 的 WordPress 是一个开源项目,这意味着任何人都可在其发展中发挥的作用。Android 的 WordPress 是 GNU 通用公共许可证下发布的。我们的应用程序和我们的源代码可自由下载和使用,但是你会喜欢。作为回报,如果可以,我们爱他如果有您的贡献您的代码,您的设计人才或甚至只是您返回到该项目的建议。
介入
我们对我们的发展博客讨论我们的发展计划和进展。我们邀请您加入我们的讨论那里。对我们Trac中的源代码,您可以按照所做的更改。登录系统使用WordPress.org 注册。下载 Android SDK免费以编译并运行应用程序,在仿真程序中,或直接在您的 Android 设备上。
- 2023-03-25 08:40:04下载
- 积分:1