1.动画文件layout_animation_row_left_slide.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2007 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android" android:delay="30%" android:animation="@anim/slide_left" />
2.动画文件slide_left.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2007 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator"> <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="@android:integer/config_shortAnimTime" /> </set>
3.
在代码中使用
LayoutAnimationController controller = AnimationUtils.loadLayoutAnimation(LinkmanActivity.this, R.anim.layout_animation_row_left_slide); lvLinkman.setLayoutAnimation(controller);
4.
在布局文件中使用
android:layoutAnimation="@anim/layout_animation_row_left_slide"
转自:http://www.phpchina.com/archives/view-39863-1.html
jQuery Mobile目前已经发布了RC2版本, 随着类库的完善,jQueryMobile必将成为移动端开发的利器之一,今天我们收集了2011年最新的8个jQuery移动开发教程,从最简单的入门介绍,到高级的开发应用案例,希望大家喜欢!
1. jQuery Mobile入门介绍
2. jQuery Mobile基本教程
3. jQuery Mobile开发简单应用
4. jQuery Mobile高级教程 - RSS阅读器应用
5. 使用PHP, MySQL和jQuery Mobile开发一个网站 第一部分 第二部分 6. jQuery Mobile 框架 – A Forms Tutorial
7. 开发一个jQuery Mobile的调查程序: 应用逻辑和界面
8. 使用开发一个本地Android新闻阅读应用 第一部分 第二部分 第三部分
最近在学习android游戏的引擎。我选择了libgdx引擎,来入门学习。
libgdx的有点自不多说,不过问题也不少。
下面给出libgdx的官方地址:http://code.google.com/p/libgdx/
以及我入门学习所用的教程:http://www.cnblogs.com/htynkn/archive/2012/01/12/libgdx_12.html
-------------------------------------------------------
在编辑地图的时候我遇到了问题。这个问题产生的原因有很多,主要还是我没有仔细的阅读官方的文档(ps:虽然文档真的很简陋,对于我这种初级入门学徒来讲)。为此我在这里做个备忘。
1) 使用TiledMap编辑地图之后,生成一个.tmx
2) 在http://code.google.com/p/libgdx/downloads/list 下载libgdx-0.9.3.zip 之后,解压从\extensions\sources\gdx-tiled-preprocessor-sources.jar,将其解压后自己重新创建一个项目后导出jar包。
3) 创建一个新的文件夹,将jar包放入,并新建in out 两个文件夹。在in文件夹中放入.tmx文件和块图的图片文件
(!!!这个时候注意,这个块图文件有命名规范,请到官方仔细查看。他不支持_符号。)
4) 然后cmd 到所在目录:java -jar *.jar in out 就能在out文件夹中得到所要的文件。
--------------------------------
ps: 我就是因为没注意_ ,所以,调试了很久……最后找高人解决的。
libgdx是个不错的引擎,可惜文档不多。希望大家多多分享……