调整聊天室滑动动画效果速度
This commit is contained in:
parent
098e9bf6ba
commit
01a2d66585
@ -10,7 +10,7 @@ import androidx.recyclerview.widget.LinearSmoothScroller;
|
|||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
public class LiveChatRecyclerViewLayoutManager extends LinearLayoutManager {
|
public class LiveChatRecyclerViewLayoutManager extends LinearLayoutManager {
|
||||||
private static final float MILLISECONDS_PER_INCH = 200f;
|
private static final float MILLISECONDS_PER_INCH = 150f;
|
||||||
public LiveChatRecyclerViewLayoutManager(Context context) {
|
public LiveChatRecyclerViewLayoutManager(Context context) {
|
||||||
super(context);
|
super(context);
|
||||||
}
|
}
|
||||||
|
@ -877,7 +877,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|||||||
mChatRecyclerView.setLayoutParams(params1);
|
mChatRecyclerView.setLayoutParams(params1);
|
||||||
|
|
||||||
mChatRecyclerView.setHasFixedSize(true);
|
mChatRecyclerView.setHasFixedSize(true);
|
||||||
LinearLayoutManager layoutManager = new LinearLayoutManager(mContext);
|
LinearLayoutManager layoutManager = new LiveChatRecyclerViewLayoutManager(mContext);
|
||||||
layoutManager.setOrientation(RecyclerView.VERTICAL);
|
layoutManager.setOrientation(RecyclerView.VERTICAL);
|
||||||
// layoutManager.setReverseLayout(true);
|
// layoutManager.setReverseLayout(true);
|
||||||
layoutManager.setStackFromEnd(true);
|
layoutManager.setStackFromEnd(true);
|
||||||
|
@ -299,7 +299,7 @@ public class PortraitLiveManager implements LivePlayListener, SocketMessageListe
|
|||||||
mask.setVisibility(View.VISIBLE);
|
mask.setVisibility(View.VISIBLE);
|
||||||
mLivePlayViewHolder.setLiveBean(mLiveBean);
|
mLivePlayViewHolder.setLiveBean(mLiveBean);
|
||||||
mLivePlayViewHolder.setCover(mLiveBean.getAvatar());
|
mLivePlayViewHolder.setCover(mLiveBean.getAvatar());
|
||||||
mLivePlayViewHolder.play(mLiveBean.getPull(), LiveRoomPlayViewHolder.PLAY_MODEL_DEF);
|
mLivePlayViewHolder.play(mLiveBean.getPull(), LiveRoomPlayViewHolder.PLAY_MODEL_720);
|
||||||
mLivePlayViewHolder.setOnMicCallback(new LiveRoomPlayViewHolder.OnMicCallback() {
|
mLivePlayViewHolder.setOnMicCallback(new LiveRoomPlayViewHolder.OnMicCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void onMikUpdate() {
|
public void onMikUpdate() {
|
||||||
|
Loading…
Reference in New Issue
Block a user