码迷,mamicode.com
首页 >  
搜索关键字:layout    ( 7328个结果
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
Android学习笔记(十)——使用意图链接活动
使用意图链接活动 1、新建一个名为“UsingIntent”的项目,右击src文件夹下的包名,选择New-->Class选项,并将新的类文件名命名为“SecondActivity”; 2、打开AndroidManifest.xml文件,添加如下代码: <activity android:name=".SecondActivity" ...
分类:移动开发   时间:2014-05-07 16:02:01    阅读次数:304
.Net 转战 Android 4.4 日常笔记--资源引用(4)
我们知道资源被注册到R.java我们通过R.java就可以读取到界面中的组件。跟我们.net一样,通过ID来读取组件知识点:通过R.java读取组件MainActivity.java通过findViewById方法查找组件在Layout中用@string查找字符串,这个跟我们MVC中国际化基本相识,...
分类:移动开发   时间:2014-05-07 14:27:09    阅读次数:438
模拟循环单击事件实现layout中间panel全屏
jquery提供了toggle方法 toggle() 方法切换元素的可见状态。如果被选元素可见,则隐藏这些元素,如果被选元素隐藏,则显示这些元素。语法$(selector).toggle(speed,callback,switch)下面的方法模拟了easyui layout中center panel...
分类:其他好文   时间:2014-05-07 13:26:46    阅读次数:315
Android学习笔记(九)——更复杂的进度对话框
显示操作进度的对话框 1、使用上一篇创建的同一项目,在activity_main.xml文件中添加一个Button: <Button android:id="@+id/btn_dialog3" android:layout_width="fill_parent" android:layout_height="wrap_cont...
分类:移动开发   时间:2014-05-07 11:30:28    阅读次数:434
Android常见UI组件之ListView(二)——定制ListView
这一篇展示ListView中选择多个项及...
分类:移动开发   时间:2014-05-07 02:47:23    阅读次数:591
no view for id xxx for fragment错误
用tabhost时,动态添加fragment,从网上找了好多处理结果还是不行。结果是在fragment中   返回的view   View v=inflater.inflate(R.layout.fragment2, container);这个方法需要三个参数才行,添加最后一个参数 View v=inflater.inflate(R.layout.fragment2, container,fals...
分类:其他好文   时间:2014-05-06 19:41:21    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!