Android 하 이 시 뮬 레이 션 동 수직 순환 스크롤 뉴스 표시 줄

사 고 를 실현 하 는 것 은 간단 하 다.바로 사용자 정의 LinearLayout 이 고 textView 는 수직 으로 스크롤 할 수 있 으 며 항목 을 클릭 할 수 있 으 며 표시 구역 은 최대 2 개의 항목 을 표시 할 수 있 으 며 교체 하 는 속성 이 수직 으로 이동 하 는 애니메이션 효과 도 있 으 며 스 레 드 를 통 해 스크롤 의 실현 을 제어 할 수 있다.
효과
jd
코드 구현
컨트롤 에 사용자 정의 속성 을 설정 합 니 다:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="JDAdverView">
<attr name="gap" format="integer" />
<attr name="animDuration" format="integer"/>
</declare-styleable>
</resources>
사용자 정의 컨트롤 의 속성 획득 방법 은 모두 같 습 니 다:

//       
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.JDAdverView);
mAdverHeight = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, jdAdverHeight, getResources().getDisplayMetrics());
int gap = array.getInteger(R.styleable.JDAdverView_gap, mGap);
int animDuration = array.getInteger(R.styleable.JDAdverView_animDuration, mAnimDuration);
//    TypedArray,      
array.recycle();
그리고 항목 의 레이아웃 을 살 펴 보 겠 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#ffffff"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:id="@+id/tag"
android:textColor="#ff0000"
android:layout_marginLeft="10dp"
android:text="  "
android:background="@drawable/corner"
android:textSize="18sp"
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/title"
android:layout_marginLeft="10dp"
android:singleLine="true"
android:ellipsize="end"
android:textSize="20sp"
android:text="    !        "
android:textColor="#000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
레이아웃 이 간단 합 니 다.효 과 는 요?
这里写图片描述  
설명 하지 않 겠 습 니 다.어댑터 를 쓰 겠 습 니 다.

package com.example.jdadvernotice;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import com.example.jdadvernotice.entity.AdverNotice;
import com.example.jdadvernotice.view.JDAdverView;
import java.util.List;
/**
* Created by Administrator on 2016/3/20.
*           
*
*/
public class JDViewAdapter {
private List<AdverNotice> mDatas;
public JDViewAdapter(List<AdverNotice> mDatas) {
this.mDatas = mDatas;
if (mDatas == null || mDatas.isEmpty()) {
throw new RuntimeException("nothing to show");
}
}
/**
*        
* @return
*/
public int getCount() {
return mDatas == null ? 0 : mDatas.size();
}

/**
*       
* @param position
* @return
*/
public AdverNotice getItem(int position) {
return mDatas.get(position);
}
/**
*       
* @param parent
* @return
*/
public View getView(JDAdverView parent) {
return LayoutInflater.from(parent.getContext()).inflate(R.layout.item, null);
}

/**
*       
* @param view
* @param data
*/
public void setItem(final View view, final AdverNotice data) {
TextView tv = (TextView) view.findViewById(R.id.title);
tv.setText(data.title);
TextView tag = (TextView) view.findViewById(R.id.tag);
tag.setText(data.url);
//         
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//    url
Toast.makeText(view.getContext(), data.url, Toast.LENGTH_SHORT).show();
}
});
}
}
그리고 사용자 정의 view:

package com.example.jdadvernotice.view;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.content.Context;
import android.content.res.Configuration;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.widget.LinearLayout;
import com.example.jdadvernotice.JDViewAdapter;
import com.example.jdadvernotice.R;
/**
* Created by zengyu on 2016/3/20.
*/
public class JDAdverView extends LinearLayout {
//    
private float mAdverHeight = 0f;
//    
private final int mGap = 4000;
//      
private final int mAnimDuration = 1000;
//       
private final float TEXTSIZE = 20f;
private JDViewAdapter mAdapter;
private final float jdAdverHeight = 50;
//   view
private View mFirstView;
private View mSecondView;
//     
private int mPosition;
//     
private boolean isStarted;
//  
private Paint mPaint;

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

public JDAdverView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}

public JDAdverView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context, attrs, defStyleAttr);
}

/**
*      
* @param context
* @param attrs
* @param defStyleAttr
*/
private void init(Context context, AttributeSet attrs, int defStyleAttr) {
//       
setOrientation(VERTICAL);
//     
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
//       
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.JDAdverView);
mAdverHeight = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, jdAdverHeight, getResources().getDisplayMetrics());
int gap = array.getInteger(R.styleable.JDAdverView_gap, mGap);
int animDuration = array.getInteger(R.styleable.JDAdverView_animDuration, mAnimDuration);

if (mGap <= mAnimDuration) {
gap = mGap;
animDuration = mAnimDuration;
}
//    TypedArray
array.recycle();
}

/**
*     
*/
public void setAdapter(JDViewAdapter adapter) {
this.mAdapter = adapter;
setupAdapter();
}

/**
*     
*/
public void start() {

if (!isStarted && mAdapter.getCount() > 1) {
isStarted = true;
postDelayed(mRunnable, mGap);//  mgap    UI
}
}

/**
*     
*/
public void stop() {
//  handle  
removeCallbacks(mRunnable);
//    
isStarted = false;
}
/**
*       
*/
private void setupAdapter() {
//    view
removeAllViews();
//      ,   
if (mAdapter.getCount() == 1) {
mFirstView = mAdapter.getView(this);
mAdapter.setItem(mFirstView, mAdapter.getItem(0));
addView(mFirstView);
} else {
//    
mFirstView = mAdapter.getView(this);
mSecondView = mAdapter.getView(this);
mAdapter.setItem(mFirstView, mAdapter.getItem(0));
mAdapter.setItem(mSecondView, mAdapter.getItem(1));
// 2        
addView(mFirstView);
addView(mSecondView);
mPosition = 1;
isStarted = false;
}
}
/**
*        
*
* @param widthMeasureSpec
* @param heightMeasureSpec
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if (LayoutParams.WRAP_CONTENT == getLayoutParams().height) {
getLayoutParams().height = (int) mAdverHeight;
} else {
mAdverHeight = getHeight();
}

if (mFirstView != null) {
mFirstView.getLayoutParams().height = (int) mAdverHeight;
}
if (mSecondView != null) {
mSecondView.getLayoutParams().height = (int) mAdverHeight;
}
}

/**
*    
*
* @param canvas
*/
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
mPaint.setColor(Color.WHITE);
mPaint.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, TEXTSIZE, getResources().getDisplayMetrics()));
mPaint.setStyle(Paint.Style.STROKE);
canvas.drawText("      ", TEXTSIZE, getHeight() * 2 / 3, mPaint);//   2/3   
}
/**
*     
*/
private void performSwitch() {
//          ,y     
ObjectAnimator animator1 = ObjectAnimator.ofFloat(mFirstView, "translationY", mFirstView.getTranslationY() - mAdverHeight);
ObjectAnimator animator2 = ObjectAnimator.ofFloat(mSecondView, "translationY", mSecondView.getTranslationY() - mAdverHeight);
//   
AnimatorSet set = new AnimatorSet();
set.playTogether(animator1, animator2);//2     
set.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {//    
mFirstView.setTranslationY(0);
mSecondView.setTranslationY(0);
View removedView = getChildAt(0);//        
mPosition++;
//       
mAdapter.setItem(removedView, mAdapter.getItem(mPosition % mAdapter.getCount()));
//     view
removeView(removedView);
//     view
addView(removedView, 1);
}
});
set.setDuration(mAnimDuration);//    
set.start();//    
}
private AnimRunnable mRunnable = new AnimRunnable();
private class AnimRunnable implements Runnable {
@Override
public void run() {
performSwitch();
postDelayed(this, mGap);
}
}

/**
*   View     
*/
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
//    
stop();
}
/**
*      
*
* @param newConfig
*/
@Override
protected void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
}
위 에서 볼 수 있 듯 이 컨트롤 은 최대 2 개의 항목 을 표시 할 수 있 고 스 레 드 로 제어 하여 항목 의 아래 표지 에 따라 돌아 가면 서 표시 할 수 있다.
구체 적 인 사용 코드:
데이터 초기 화:

private void initData() {
datas.add(new AdverNotice("          200-50","  "));
datas.add(new AdverNotice("       , 199 100!","   "));
datas.add(new AdverNotice("       ,    477","HOT"));
datas.add(new AdverNotice("    !        ","new"));
}
바 인 딩 어댑터 스크롤 스 레 드 오픈:

initData();
final JDViewAdapter adapter = new JDViewAdapter(datas);
final JDAdverView tbView = (JDAdverView) findViewById(R.id.jdadver);
tbView.setAdapter(adapter);
//      
tbView.start();
여기까지 쓰 겠 습 니 다.늦 었 습 니 다.벽돌 을 찍 으 러 오신 것 을 환영 합 니 다.
이상 의 내용 은 안 드 로 이 드 모방 경 동 수직 순환 스크롤 뉴스 란 에 대한 모든 소개 입 니 다.이상 의 도움 을 바 랍 니 다!

좋은 웹페이지 즐겨찾기