更强的微光闪烁效果--第三方开源--Shimmer-android

来源:互联网 发布:mac ps cs6永久序列号 编辑:程序博客网 时间:2024/05/15 23:53

Shimmer-android在github上的项目主页是:https://github.com/RomainPiel/Shimmer-android 
Shimmer-android干脆在Android TextView,Button的基础上重新写了ShimmerTextView和ShimmerButton。如果只是需要将一段文字实现Shimmer效果,直接使用ShimmerTextView即可。

想要设闪光的颜色,在layout中加上xmlns:app="http://schemas.android.com/apk/res-auto"

在shimemerTextView中加上 app:reflectionColor="-----"

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:background="#9e9e9e" >    <com.romainpiel.shimmer.ShimmerTextView        android:id="@+id/shimmer_tv"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:gravity="center"        android:text="android"        android:textColor="#757575"        android:textSize="20sp" /></RelativeLayout>
import android.app.Activity;import android.os.Bundle;import com.romainpiel.shimmer.Shimmer;import com.romainpiel.shimmer.ShimmerTextView;public class MainActivity extends Activity {        @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        ShimmerTextView tv = (ShimmerTextView) findViewById(R.id.shimmer_tv);        Shimmer shimmer = new Shimmer();        shimmer.setDuration(2500);        shimmer.start(tv);    }}

start执行,cancel停止。




0 0
原创粉丝点击