android kotlin 垂直滾動(dòng)(消息輪播)

這是個(gè)仿淘寶 首頁(yè)上下滾動(dòng)消息的layout
+使用方式

/**
 * Created by mocaris on 2017/12/20.
 * 垂直跑馬燈
 */

public class VerticalRollingLayout extends ViewFlipper {

    public static final int TOP_BOTTOM = 0;
    public static final int BOTTOM_TOP = 1;

    //滾動(dòng)方向  上下  下上
    private int rollingType = 0;
    //是否重復(fù)滾動(dòng)  否,只將所有滾動(dòng)完畢停止
//    private boolean mRepeat;
    //滾動(dòng)間隔 默認(rèn)1000
    private int mRollingInterval;
    //動(dòng)畫時(shí)間
    private int mAnimDuration;
    private ListAdapter mListAdapter;

    public VerticalRollingLayout(Context context) {
        this(context, null);
    }

    public VerticalRollingLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.VerticalRollingLayout);
        rollingType = typedArray.getInt(R.styleable.VerticalRollingLayout_rolling_type, 0);
//        mRepeat = typedArray.getBoolean(R.styleable.VerticalRollingLayout_repeat, false);
        mRollingInterval = typedArray.getInt(R.styleable.VerticalRollingLayout_rolling_interval, 3500);
        mAnimDuration = typedArray.getInt(R.styleable.VerticalRollingLayout_rolling_duration, 1000);
        typedArray.recycle();
        InitRollingAnim();
    }

    public int getRollingType() {
        return rollingType;
    }

    /**
     * @param rollingType {@link #TOP_BOTTOM} {@link #BOTTOM_TOP}
     */
    public void setRollingType(int rollingType) {
        this.rollingType = rollingType;
    }

    public void setAdapter(ListAdapter listAdapter) {
        this.mListAdapter = listAdapter;
        initChildView();
    }

    public void notifyDataSetChanged() {
        initChildView();
    }

    private void initChildView() {
        if (null == mListAdapter) {
            return;
        }
        this.removeAllViews();
        for (int i = 0; i < mListAdapter.getCount(); i++) {
            View itemView = mListAdapter.getView(i, null, this);
            this.addView(itemView);
        }
    }

    /**
     * 初始化動(dòng)畫
     */
    private void InitRollingAnim() {
        this.clearAnimation();
        TranslateAnimation rollingAnimIn = null;
        TranslateAnimation rollingAnimOut = null;
        switch (rollingType) {
            case BOTTOM_TOP://從下到上
                rollingAnimOut = getRollingAnim(0f, 1f);
                rollingAnimIn = getRollingAnim(-1f, 0f);
                break;
            case TOP_BOTTOM://從上到下
            default:
                rollingAnimIn = getRollingAnim(1f, 0f);
                rollingAnimOut = getRollingAnim(0f, -1f);
                break;
        }
        this.setFlipInterval(mRollingInterval);
        this.setInAnimation(rollingAnimIn);
        this.setOutAnimation(rollingAnimOut);
    }

    /**
     * 動(dòng)畫
     *
     * @param fromY
     * @param toY
     * @return
     */
//    //int fromXType, float fromXValue, int toXType, float toXValue,int fromYType, float fromYValue, int toYType, float toYValue
    private TranslateAnimation getRollingAnim(float fromY, float toY) {
        TranslateAnimation translateAnimation = new TranslateAnimation(Animation.RELATIVE_TO_SELF
                , 0
                , Animation.RELATIVE_TO_SELF
                , 0
                , Animation.RELATIVE_TO_SELF
                , fromY
                , Animation.RELATIVE_TO_SELF
                , toY);
        translateAnimation.setDuration(mAnimDuration);
        return translateAnimation;
    }

}

自定義屬性

 <!--垂直滾動(dòng)-->
    <declare-styleable name="VerticalRollingLayout">
        <!--滾動(dòng)方向-->
        <attr name="rolling_type" format="enum">
            <enum name="top2bottom" value="0" />
            <enum name="bottom2top" value="1" />
        </attr>
        <!--是否重復(fù) default false-->
        <!--<attr name="repeat" format="boolean" />-->
        <!--滾動(dòng)時(shí)間間隔  毫秒 millisecond  default 1000-->
        <attr name="rolling_interval" format="integer" />
        <!--動(dòng)畫時(shí)間-->
        <attr name="rolling_duration" format="integer" />
    </declare-styleable>

使用方法

     <com.zfzx.investor.custom.weight.VerticalRollingLayout
        android:id="@+id/vrl_home"
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1" />

市殷。秦叛。新荤。

       vrl_home.rollingType = VerticalRollingLayout.BOTTOM_TOP
//homeRollingAdapter 是繼承ListAdapter 的   和ListAdapter 用法一樣
        vrl_home.setAdapter(homeRollingAdapter)
        vrl_home.startFlipping()
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末荧嵌,一起剝皮案震驚了整個(gè)濱河市慰枕,隨后出現(xiàn)的幾起案子具则,更是在濱河造成了極大的恐慌,老刑警劉巖具帮,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件博肋,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡蜂厅,警方通過查閱死者的電腦和手機(jī)匪凡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來掘猿,“玉大人病游,你說我怎么就攤上這事〕硗ǎ” “怎么了衬衬?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)改橘。 經(jīng)常有香客問我滋尉,道長(zhǎng),這世上最難降的妖魔是什么唧龄? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任兼砖,我火速辦了婚禮奸远,結(jié)果婚禮上既棺,老公的妹妹穿的比我還像新娘讽挟。我一直安慰自己,他們只是感情好丸冕,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布耽梅。 她就那樣靜靜地躺著,像睡著了一般胖烛。 火紅的嫁衣襯著肌膚如雪眼姐。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天佩番,我揣著相機(jī)與錄音众旗,去河邊找鬼。 笑死趟畏,一個(gè)胖子當(dāng)著我的面吹牛贡歧,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播赋秀,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼利朵,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了猎莲?” 一聲冷哼從身側(cè)響起绍弟,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎著洼,沒想到半個(gè)月后樟遣,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡身笤,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年年碘,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片展鸡。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡屿衅,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出莹弊,到底是詐尸還是另有隱情涤久,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布忍弛,位于F島的核電站响迂,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏细疚。R本人自食惡果不足惜蔗彤,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧然遏,春花似錦贫途、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至秧倾,卻和暖如春怨酝,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背那先。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工农猬, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人售淡。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓斤葱,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親勋又。 傳聞我的和親對(duì)象是個(gè)殘疾皇子苦掘,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

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

  • 1、通過CocoaPods安裝項(xiàng)目名稱項(xiàng)目信息 AFNetworking網(wǎng)絡(luò)請(qǐng)求組件 FMDB本地?cái)?shù)據(jù)庫(kù)組件 SD...
    陽(yáng)明先生_x閱讀 15,968評(píng)論 3 119