自定义控件之歌词RCL控件

2023-10-25 15:51
文章标签 自定义 控件 歌词 rcl

本文主要是介绍自定义控件之歌词RCL控件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最终效果图:

2017-09-20-04mzAaaaaa.gif

控件的思路是2个TextView压在一起

-------注意更改第二版为可以居中版本,下载Demo后请覆盖内容

文件名:item_rcl.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="wrap_content"><LinearLayoutandroid:id="@+id/one"android:layout_width="wrap_content"android:layout_height="25dp"android:layout_centerHorizontal="true"><TextViewandroid:id="@+id/qqq"android:layout_width="wrap_content"android:layout_height="wrap_content"android:scrollbars="horizontal"android:text="XINHAO_HAN"android:textColor="#00ff00"android:textSize="20sp" /></LinearLayout><RelativeLayoutandroid:id="@+id/two"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_alignLeft="@+id/one"><TextViewandroid:id="@+id/zzzz"android:layout_width="wrap_content"android:layout_height="wrap_content"android:scrollbars="horizontal"android:text="XINHAO_HAN"android:textColor="#ff00ff"android:textSize="20sp" /></RelativeLayout></RelativeLayout>

TextView使用的属性如下:

XML:
android:scrollbars="horizontal"
java:textView.setMovementMethod(ScrollingMovementMethod.getInstance());textView.setHorizontallyScrolling(true); // 不让超出屏幕的文本自动换行,使用滚动条

全部代码 --JAVA

package com.example.downlist.view;import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.support.annotation.Nullable;
import android.text.method.ScrollingMovementMethod;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.TextView;
import com.example.downlist.R;
import com.example.downlist.utils.UIUtlis;
/*** Created by Administrator on 2017/9/20.*/
//歌词控件
public class RCLView extends FrameLayout {private View one;private View two;private Context context;private View view;private int width;private TextView textView;private TextView qqq;public RCLView(Context context) {super(context);initView(context, null);}private String title = "XINHAO_HAN";private Paint paint;public RCLView(Context context, @Nullable AttributeSet attrs) {super(context, attrs);initView(context, attrs);}public RCLView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);initView(context, attrs);}//初始化public void setString(String string) {textView.setText(string);qqq.setText(string);}public void initView(Context context, AttributeSet attrs) {this.context = context;if (view == null)view = UIUtlis.getView(R.layout.item_rcl);if (one == null)one = view.findViewById(R.id.one);if (two == null)two = view.findViewById(R.id.two);textView = two.findViewById(R.id.zzzz);qqq = one.findViewById(R.id.qqq);textView.setMovementMethod(ScrollingMovementMethod.getInstance());textView.setHorizontallyScrolling(true); // 不让超出屏幕的文本自动换行,使用滚动条addView(view);if (attrs != null) {TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.RCLView);int topColor = typedArray.getColor(R.styleable.RCLView_topColor, Color.RED);int boomColor = typedArray.getColor(R.styleable.RCLView_boomColor, Color.BLUE);String string = typedArray.getString(R.styleable.RCLView_text);int integer = typedArray.getInteger(R.styleable.RCLView_textSize, 40);setTopColor(topColor);setBoomColor(boomColor);setString(string);setTextSize(integer);}}//设置顶部颜色public void setTopColor(int color) {qqq.setTextColor(color);}//设置底部颜色public void setBoomColor(int color) {textView.setTextColor(color);}//设置字体大小public void setTextSize(float size) {qqq.setTextSize(size);textView.setTextSize(size);}//开始测量@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);width = one.getMeasuredWidth();// Log.e("宽:", "onMeasure: " + width );}public void setIndex(int index) {ViewGroup.LayoutParams layoutParams = two.getLayoutParams();double i = width * 1.0 / 100;Log.e("宽:", "setIndex: " + i + " index: " + index + " 总和:" + (i * index));layoutParams.width = (int) (i * index);two.setLayoutParams(layoutParams);}//开始绘画@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);}
}

//XML部分

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content"android:layout_height="wrap_content"><LinearLayoutandroid:id="@+id/one"android:layout_width="wrap_content"android:layout_height="25dp"><TextViewandroid:id="@+id/qqq"android:layout_width="wrap_content"android:layout_height="wrap_content"android:scrollbars="horizontal"android:text="这是自定义歌词的一种思路"android:textColor="#00ff00"android:textSize="20sp" /></LinearLayout><RelativeLayoutandroid:id="@+id/two"android:layout_width="0dp"android:layout_height="wrap_content"><TextViewandroid:id="@+id/zzzz"android:layout_width="wrap_content"android:layout_height="wrap_content"android:scrollbars="horizontal"android:text="这是自定义歌词的一种思路"android:textColor="#ff00ff"android:textSize="20sp" /></RelativeLayout></FrameLayout>

attrs部分

<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="RCLView"><attr name="topColor" format="color" /><attr name="boomColor" format="color" /><attr name="textSize" format="integer"></attr><attr name="text" format="string"></attr></declare-styleable></resources>

//使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:hxh="http://schemas.android.com/apk/res-auto"android:id="@+id/mySheView"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><com.example.downlist.view.RCLViewandroid:id="@+id/rcView"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginTop="50dp"hxh:boomColor="#ff0000"hxh:text="曾经的一切,都是那么渺茫,曾经的曾经都是一切"hxh:textSize="15"hxh:topColor="#00ff00"></com.example.downlist.view.RCLView><SeekBarandroid:id="@+id/see"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginTop="50dp"android:max="100" /></LinearLayout>

Demo下载:
链接: https://pan.baidu.com/s/1i5P6WML 密码: 3283

这篇关于自定义控件之歌词RCL控件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/283593

相关文章

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单

SpringBoot 自定义消息转换器使用详解

《SpringBoot自定义消息转换器使用详解》本文详细介绍了SpringBoot消息转换器的知识,并通过案例操作演示了如何进行自定义消息转换器的定制开发和使用,感兴趣的朋友一起看看吧... 目录一、前言二、SpringBoot 内容协商介绍2.1 什么是内容协商2.2 内容协商机制深入理解2.2.1 内容

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

自定义类型:结构体(续)

目录 一. 结构体的内存对齐 1.1 为什么存在内存对齐? 1.2 修改默认对齐数 二. 结构体传参 三. 结构体实现位段 一. 结构体的内存对齐 在前面的文章里我们已经讲过一部分的内存对齐的知识,并举出了两个例子,我们再举出两个例子继续说明: struct S3{double a;int b;char c;};int mian(){printf("%zd\n",s

Spring 源码解读:自定义实现Bean定义的注册与解析

引言 在Spring框架中,Bean的注册与解析是整个依赖注入流程的核心步骤。通过Bean定义,Spring容器知道如何创建、配置和管理每个Bean实例。本篇文章将通过实现一个简化版的Bean定义注册与解析机制,帮助你理解Spring框架背后的设计逻辑。我们还将对比Spring中的BeanDefinition和BeanDefinitionRegistry,以全面掌握Bean注册和解析的核心原理。

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

lvgl8.3.6 控件垂直布局 label控件在image控件的下方显示

在使用 LVGL 8.3.6 创建一个垂直布局,其中 label 控件位于 image 控件下方,你可以使用 lv_obj_set_flex_flow 来设置布局为垂直,并确保 label 控件在 image 控件后添加。这里是如何步骤性地实现它的一个基本示例: 创建父容器:首先创建一个容器对象,该对象将作为布局的基础。设置容器为垂直布局:使用 lv_obj_set_flex_flow 设置容器

HTML5自定义属性对象Dataset

原文转自HTML5自定义属性对象Dataset简介 一、html5 自定义属性介绍 之前翻译的“你必须知道的28个HTML5特征、窍门和技术”一文中对于HTML5中自定义合法属性data-已经做过些介绍,就是在HTML5中我们可以使用data-前缀设置我们需要的自定义属性,来进行一些数据的存放,例如我们要在一个文字按钮上存放相对应的id: <a href="javascript:" d

一步一步将PlantUML类图导出为自定义格式的XMI文件

一步一步将PlantUML类图导出为自定义格式的XMI文件 说明: 首次发表日期:2024-09-08PlantUML官网: https://plantuml.com/zh/PlantUML命令行文档: https://plantuml.com/zh/command-line#6a26f548831e6a8cPlantUML XMI文档: https://plantuml.com/zh/xmi

argodb自定义函数读取hdfs文件的注意点,避免FileSystem已关闭异常

一、问题描述 一位同学反馈,他写的argo存过中调用了一个自定义函数,函数会加载hdfs上的一个文件,但有些节点会报FileSystem closed异常,同时有时任务会成功,有时会失败。 二、问题分析 argodb的计算引擎是基于spark的定制化引擎,对于自定义函数的调用跟hive on spark的是一致的。udf要通过反射生成实例,然后迭代调用evaluate。通过代码分析,udf在