自定義控件之歌詞RCL控件

最終效果圖:

2017-09-20-04mzAaaaaa.gif

控件的思路是2個TextView壓在一起

-------注意更改第二版為可以居中版本,下載Demo后請覆蓋內(nèi)容

文件名: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">

    <LinearLayout
        android:id="@+id/one"
        android:layout_width="wrap_content"
        android:layout_height="25dp"
        android:layout_centerHorizontal="true">

        <TextView
            android: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>

    <RelativeLayout
        android:id="@+id/two"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/one">

        <TextView
            android: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);
        }


    }

    //設(shè)置頂部顏色
    public void setTopColor(int color) {

        qqq.setTextColor(color);
    }

    //設(shè)置底部顏色
    public void setBoomColor(int color) {
        textView.setTextColor(color);
    }

    //設(shè)置字體大小
    public void setTextSize(float size) {
        qqq.setTextSize(size);
        textView.setTextSize(size);
    }


    //開始測量


    @Override
    protected 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);


    }

    //開始繪畫

    @Override
    protected 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">

    <LinearLayout
        android:id="@+id/one"
        android:layout_width="wrap_content"
        android:layout_height="25dp">

        <TextView
            android: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>

    <RelativeLayout
        android:id="@+id/two"
        android:layout_width="0dp"
        android:layout_height="wrap_content">

        <TextView
            android: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.RCLView

        android:id="@+id/rcView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        hxh:boomColor="#ff0000"
        hxh:text="曾經(jīng)的一切,都是那么渺茫,曾經(jīng)的曾經(jīng)都是一切"
        hxh:textSize="15"
        hxh:topColor="#00ff00"></com.example.downlist.view.RCLView>


    <SeekBar
        android: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

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市烟很,隨后出現(xiàn)的幾起案子七问,更是在濱河造成了極大的恐慌蜓耻,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件械巡,死亡現(xiàn)場離奇詭異刹淌,居然都是意外死亡,警方通過查閱死者的電腦和手機讥耗,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進店門有勾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人古程,你說我怎么就攤上這事蔼卡。” “怎么了挣磨?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵雇逞,是天一觀的道長。 經(jīng)常有香客問我茁裙,道長塘砸,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任晤锥,我火速辦了婚禮掉蔬,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘查近。我一直安慰自己眉踱,他們只是感情好挤忙,可當(dāng)我...
    茶點故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布霜威。 她就那樣靜靜地躺著,像睡著了一般册烈。 火紅的嫁衣襯著肌膚如雪戈泼。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天赏僧,我揣著相機與錄音大猛,去河邊找鬼。 笑死淀零,一個胖子當(dāng)著我的面吹牛挽绩,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播驾中,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼唉堪,長吁一口氣:“原來是場噩夢啊……” “哼模聋!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起唠亚,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤链方,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后灶搜,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體祟蚀,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年割卖,在試婚紗的時候發(fā)現(xiàn)自己被綠了前酿。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡鹏溯,死狀恐怖薪者,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情剿涮,我是刑警寧澤言津,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站取试,受9級特大地震影響悬槽,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜瞬浓,卻給世界環(huán)境...
    茶點故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一初婆、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧猿棉,春花似錦磅叛、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至杖爽,卻和暖如春敲董,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背慰安。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工腋寨, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人化焕。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓萄窜,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子查刻,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容