当前位置: 编程技术>移动开发
本页文章导读:
▪关于ListView讲的很详细的一篇文章,转载一上 关于ListView讲的很详细的一篇文章,转载一下
转自:http://blog.csdn.net/comkingfly/article/details/6578907
......
▪ 卡通 rotate 让一张图片以它的中心旋转 动画 rotate 让一张图片以它的中心旋转
1 在layout/anim下建立一个anim.xml文件
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android.........
▪ 指定起步包内的其他Activity 指定启动包内的其他Activity
private void startOtherActivity(){
try {
PackageInfo pInfo=getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_ACTIVITIES);
ActivityInfo[] ainfos=pInfo.activities;
String act.........
[1]关于ListView讲的很详细的一篇文章,转载一上
来源: 互联网 发布时间: 2014-02-18
关于ListView讲的很详细的一篇文章,转载一下
转自:http://blog.csdn.net/comkingfly/article/details/6578907
转自:http://blog.csdn.net/comkingfly/article/details/6578907
[2] 卡通 rotate 让一张图片以它的中心旋转
来源: 互联网 发布时间: 2014-02-18
动画 rotate 让一张图片以它的中心旋转
1 在layout/anim下建立一个anim.xml文件
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:fromDegrees="0"
android:toDegrees="+360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="3000" />
</set>
在activity 中应用:
Animation anim = AnimationUtils.loadAnimation(this, R.anim.splashanim);
findViewById(R.id.sun).startAnimation(anim);
R.id.sun是一个imageview控件,这个控件中有一个图片,本文例子就是让这张图片以它的中心旋转。
[3] 指定起步包内的其他Activity
来源: 互联网 发布时间: 2014-02-18
指定启动包内的其他Activity
private void startOtherActivity(){ try { PackageInfo pInfo=getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_ACTIVITIES); ActivityInfo[] ainfos=pInfo.activities; String actName=ainfos[1].name; Intent intent=new Intent(); intent.setComponent(new ComponentName(getPackageName(), actName)); startActivity(intent); System.out.println(ainfos.length); } catch (NameNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
最新技术文章: