Android实现TextView字符串波浪式跳动

简介: Android实现TextView字符串波浪式跳动在github上有一个开源项目:JumpingBeans,其项目主页是:https://github.com/frakbot/JumpingBeansJumpingBeans将一个普通的Android TextView中显示的字符串可以做到波浪式跳动。


Android实现TextView字符串波浪式跳动

在github上有一个开源项目:JumpingBeans,其项目主页是:https://github.com/frakbot/JumpingBeans
JumpingBeans将一个普通的Android TextView中显示的字符串可以做到波浪式跳动。JumpingBeans使用起来简单,仅仅在Android的Java代码中将一个普通Android TextView加载即可:

package zhangphil.demo;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import net.frakbot.jumpingbeans.JumpingBeans;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	
		// 增加跳动的点
		final TextView textView1 = (TextView) findViewById(R.id.textView1);
		JumpingBeans jumpingBeans1 = JumpingBeans.with(textView1)
		        .appendJumpingDots()
		        .build();

		// 从第一个字符串到最后一个字符串波浪式循环跳动
		final TextView textView2 = (TextView) findViewById(R.id.textView2);
		JumpingBeans jumpingBeans2 = JumpingBeans.with(textView2)
		        .makeTextJump(0, textView2.getText().length())
		        .setIsWave(true)
		        .setLoopDuration(3000) 
		        .build();
	}
}


布局文件中仅仅有两个普通的Android TextView:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="zhangphil.demo.MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="100dip"
        android:gravity="center"
        android:text="Zhang Phil @ CSDN"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="100dip"
        android:gravity="center"
        android:text="Zhang Phil @ CSDN"
        android:textSize="20sp" />

</LinearLayout>



结果如图所示:

相关文章
|
5月前
|
Android开发
Android Stadio Build 窗口字符串乱码问题
在使用Android Studio过程中,如果遇到Build窗口字符串乱码问题,可以通过编辑`studio.vmoptions`文件添加`-Dfile.encoding=UTF-8`配置并重启Android Studio来解决。
205 1
Android Stadio Build 窗口字符串乱码问题
|
3月前
|
XML 存储 Java
浅谈Android的TextView控件
浅谈Android的TextView控件
52 0
|
4月前
|
Android开发
Android经典实战之Textview文字设置不同颜色、下划线、加粗、超链接等效果
本文介绍了 `SpannableString` 在 Android 开发中的强大功能,包括如何在单个字符串中应用多种样式,如颜色、字体大小、风格等,并提供了详细代码示例,展示如何设置文本颜色、添加点击事件等,助你实现丰富文本效果。
361 3
|
7月前
|
XML IDE 开发工具
13. 【Android教程】文本框 TextView
13. 【Android教程】文本框 TextView
135 2
|
7月前
|
编解码 Android开发
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
133 0
|
8月前
|
Android开发
android TextView HTML 的效果
android TextView HTML 的效果
57 2
|
8月前
|
XML 搜索推荐 Java
Android TextView的字体设置
【5月更文挑战第13天】
356 0
|
8月前
|
XML Java Android开发
Android控件之基础控件——进度条类的view——TextView、Checkbox复选控件、RadioButton单选控件、ToggleButton开关、SeekBar拖动条、menu、弹窗
Android控件之基础控件——进度条类的view——TextView、Checkbox复选控件、RadioButton单选控件、ToggleButton开关、SeekBar拖动条、menu、弹窗
791 1
|
8月前
|
Android开发
Android开发小技巧:怎样在 textview 前面加上一个小图标。
Android开发小技巧:怎样在 textview 前面加上一个小图标。
152 0
|
XML Android开发 数据格式
Android 中使用SpannableString实现TextView文本超链接跳转功能
Android 中使用SpannableString实现TextView文本超链接跳转功能
251 0

热门文章

最新文章