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
在安卓开发中,常会遇到需要切换不同语言的情况。语言不同意味着需要进行不同语种字符的动态切换、不同布局的动态切换。 安卓实现这一功能非常的简单:
首先在res中创建其它语种对应的value、layout等文件夹,比如添加英文版和越南版,命名如value-en-US、value-vi、layout-e....
分类:
移动开发 时间:
2014-05-09 19:33:49
阅读次数:
1223
废话不多说,这是地址: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
在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
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
使用意图链接活动
1、新建一个名为“UsingIntent”的项目,右击src文件夹下的包名,选择New-->Class选项,并将新的类文件名命名为“SecondActivity”;
2、打开AndroidManifest.xml文件,添加如下代码:
<activity
android:name=".SecondActivity"
...
分类:
移动开发 时间:
2014-05-07 16:02:01
阅读次数:
304