在EditText标签的外层Layout中加入focusableInTouchMode属性android:focusableInTouchMode="true"即可。
分类:
移动开发 时间:
2014-05-08 17:37:00
阅读次数:
307
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
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如
Button、Te...
分类:
移动开发 时间:
2014-05-08 11:56:47
阅读次数:
464
新建一个Android项目,命名为FrameLayout此实例主要操作src文件夹下的MainActivity.Java类文件和res/layout下的activity_main.xml布局文件1.布局主页面代码activity_main.xml↓
2.Java代码MainAc...
分类:
移动开发 时间:
2014-05-08 07:38:14
阅读次数:
375
使用意图链接活动
1、新建一个名为“UsingIntent”的项目,右击src文件夹下的包名,选择New-->Class选项,并将新的类文件名命名为“SecondActivity”;
2、打开AndroidManifest.xml文件,添加如下代码:
<activity
android:name=".SecondActivity"
...
分类:
移动开发 时间:
2014-05-07 16:02:01
阅读次数:
304
我们知道资源被注册到R.java我们通过R.java就可以读取到界面中的组件。跟我们.net一样,通过ID来读取组件知识点:通过R.java读取组件MainActivity.java通过findViewById方法查找组件在Layout中用@string查找字符串,这个跟我们MVC中国际化基本相识,...
分类:
移动开发 时间:
2014-05-07 14:27:09
阅读次数:
438
jquery提供了toggle方法 toggle()
方法切换元素的可见状态。如果被选元素可见,则隐藏这些元素,如果被选元素隐藏,则显示这些元素。语法$(selector).toggle(speed,callback,switch)下面的方法模拟了easyui
layout中center panel...
分类:
其他好文 时间:
2014-05-07 13:26:46
阅读次数:
315
显示操作进度的对话框
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
用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