您的位置:首页 > 移动开发 > Android开发

android 自定义Button 及Animation的基本使用

2012-02-23 16:34 357 查看
在android开发中常用组件的使用是必不可少的,但是常用组件用来用去也就那么几种,满足不了开发者对应用界面的要求,更满足不了消费者对商业应用美观,大方,时尚的要求,所以说学会自定义各种组件十分必要。

本例简单的自定义了一个Button并结合了四个简单animation进行展示,当点击Start按钮时,四个Button会按照不同的Animation进行运动:





下面我们先看看怎么实现自定义Button:

首先是布局文件,就是一个AbsoluteLayoutli里面有五个Button,其中四个是一列的自定义的Button,另一个是系统自带的Button用于启动绑定到四个Button上面的Animation。

这是单个自定义Button的声明:

<Button
android:id="@+id/bt1"
android:layout_x="0dp"
android:layout_y="100dp"
android:text="@string/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bt_define" />
咋一看其实并没什么不一样,好像就比平常多了一个background,其实关键是在这个background上面

这需要在res文件夹里新建一个drawable文件件,再在drawable文件夹里新建一个bt_define.xml文件:



里面的内容如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@drawable/bt" android:state_enabled="true" android:state_focused="true" android:state_pressed="false"/>
<item android:drawable="@drawable/bt_bg" android:state_enabled="true" android:state_pressed="true"/>
<item android:drawable="@drawable/bt_bg" android:state_checked="true" android:state_enabled="true"/>
<item android:drawable="@drawable/bt"/>

</selector>
这相当与一个声明文件,就是当这Button正常显示时背景就是bt,但当它被按下,或者获取焦点的时候就背景就变成了bt_bg,这样给以用户才有被按下的感觉。如果单单只有一个图片作为Button的background时,是没有按下的效果的这是bt

这是bt_bg

,这只是一个简单的定义而已,还有更复杂,更有趣的需要自己去探索了

好了接着再简单地绑定animation吧

还是首先在res文件夹里建一个anim的文件夹,再在里面建几个xml文件:


分别为淡入淡出效果的,移动效果的,旋转效果的和缩放效果的

具体代码如下:

淡入淡出

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

<alpha
android:duration="3000"
android:fromAlpha="0.1"
android:toAlpha="1.0" />

</set>
旋转效果

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

<rotate
android:duration="3000"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="+360" />

</set>
缩放效果

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

<scale
android:duration="3000"
android:fillAfter="false"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1"
android:toYScale="1" />

</set>


移动效果



<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

<translate
android:duration="3000"
android:fromXDelta="0"
android:fromYDelta="0"
android:interpolator="@android:anim/accelerate_interpolator"
android:toXDelta="100"
android:toYDelta="0" />

</set>


这是使用的xml的形式进行Animation的设定,还可以在java代码中直接写出,而且一个文件可以有多种效果,多种结合方式,更多设置选项还有各子的意义这里就不一一列举出来,自己在网站上都能找到,最后是Activity的代码:

package sina.CreAmazing.muti_button;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.AnimationUtils;
import android.widget.Button;

public class MutiButtonActivity extends Activity {
/** Called when the activity is first created. */

private Button btStart;
private Button bt1;
private Button bt2;
private Button bt3;
private Button bt4;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

findViews();
btStart.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
startAnimation();
}
});
}

private void findViews() {
// TODO Auto-generated method stub
btStart = (Button) findViewById(R.id.bt_start);
bt1 = (Button) findViewById(R.id.bt1);
bt2 = (Button) findViewById(R.id.bt2);
bt3 = (Button) findViewById(R.id.bt3);
bt4 = (Button) findViewById(R.id.bt4);
}

private void startAnimation(){
bt1.startAnimation(AnimationUtils.loadAnimation(this, R.anim.bt_alpha));
bt2.startAnimation(AnimationUtils.loadAnimation(this, R.anim.bt_rotate));
bt3.startAnimation(AnimationUtils.loadAnimation(this, R.anim.bt_scale));
bt4.startAnimation(AnimationUtils.loadAnimation(this, R.anim.bt_translate));
}
}


其实只要巧妙的利用Animation就能为应用作出很多很酷效果,在下一篇将会讲到。。。

项目源代码如下:

http://115.com/file/c24t5f8r#AnimationButton.rar

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: