码迷,mamicode.com
首页 >  
搜索关键字:drawer layout    ( 7424个结果
29 adapt
public View getView(int position, View convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item, null); TextView tv = (TextV...
分类:其他好文   时间:2014-05-10 00:41:22    阅读次数:283
初识安卓小程序(点击按钮切换屏幕颜色)
如图,点击按钮就会切换屏幕的颜色 首先,先创建一个安卓项目(我的版本是4.4.2的),名字为"world",当然,也可以别的名称 然后在res文件夹下找到layout文件夹,找到activity_main.xml或fragment_main.xml,在里面输入或拖拽按钮 <RelativeLayout xmlns:android="http://schemas.android.com/apk...
分类:移动开发   时间:2014-05-09 22:30:47    阅读次数:441
android实现多语言切换
在安卓开发中,常会遇到需要切换不同语言的情况。语言不同意味着需要进行不同语种字符的动态切换、不同布局的动态切换。 安卓实现这一功能非常的简单: 首先在res中创建其它语种对应的value、layout等文件夹,比如添加英文版和越南版,命名如value-en-US、value-vi、layout-e....
分类:移动开发   时间:2014-05-09 19:33:49    阅读次数:1223
Android Layout Binder(在线将XML中View find出来,生成java代码的工具)
废话不多说,这是地址:http://android.lineten.net/layout.php。 有图有真相,例如: 你的XML假如是这样:     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:orientation=...
分类:移动开发   时间:2014-05-09 15:20:54    阅读次数:424
android开发之 包含EditText组件 禁止自动获取焦点弹出输入法
在EditText标签的外层Layout中加入focusableInTouchMode属性android:focusableInTouchMode="true"即可。
分类:移动开发   时间:2014-05-08 17:37:00    阅读次数:307
Android Scrollview 内部组件android:layout_height="fill_parent"无效的解决办法
Found the solution myself in the end. The problem was not with theLinearLayout,but with theScrollView(seems weird, considering the fact that theScroll...
分类:移动开发   时间:2014-05-08 13:42:02    阅读次数:321
Android LayoutInflater详解
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如 Button、Te...
分类:移动开发   时间:2014-05-08 11:56:47    阅读次数:464
Android 单击图片切换效果
新建一个Android项目,命名为FrameLayout此实例主要操作src文件夹下的MainActivity.Java类文件和res/layout下的activity_main.xml布局文件1.布局主页面代码activity_main.xml↓ 2.Java代码MainAc...
分类:移动开发   时间:2014-05-08 07:38:14    阅读次数:375
提升jQuery开发技能的教程
iPhone-like Sliding HeadersSimple jQuery Spy EffectSimple use of Event DelegationAdding Keyboard NavigationSlide out and drawer effectAutomatic Infini...
分类:Web程序   时间:2014-05-07 20:43:22    阅读次数:378
Android学习笔记(十)——使用意图链接活动
使用意图链接活动 1、新建一个名为“UsingIntent”的项目,右击src文件夹下的包名,选择New-->Class选项,并将新的类文件名命名为“SecondActivity”; 2、打开AndroidManifest.xml文件,添加如下代码: <activity android:name=".SecondActivity" ...
分类:移动开发   时间:2014-05-07 16:02:01    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!