MFC实现子控件focus核心上下移动父控件ListView和Gridview也跟着向上下移动 ...

打印 上一主题 下一主题

主题 660|帖子 660|积分 1980

项目中要实现mfc功能,然后子控件核心下移,LIstView和Gridview父控件不会下移,所以就有这个文章。废话不多说直接上代码。
MFCGridView.java

  1. import android.content.Context;
  2. import android.util.AttributeSet;
  3. import android.view.View;
  4. import android.view.ViewParent;
  5. import android.view.ViewTreeObserver;
  6. import android.widget.GridView;
  7. import com.baidu.navisdk.ui.util.MFCUtil;
  8. public class MFCGridView extends GridView {
  9.     protected int lastPosition = -1;
  10.     protected boolean mHasRegister = false;
  11.     private final ViewTreeObserver.OnGlobalFocusChangeListener mFocusChangeListener =
  12.             new ViewTreeObserver.OnGlobalFocusChangeListener() {
  13.                 @Override
  14.                 public void onGlobalFocusChanged(View oldFocus, View newFocus) {
  15.                     if (!isInTouchMode()) {
  16.                         refreshListViewScroll(oldFocus, newFocus);
  17.                     }
  18.                 }
  19.             };
  20.     protected void refreshListViewScroll(View oldFocus, View newFocus) {
  21.         if (getVisibility() != VISIBLE) {
  22.             return;
  23.         }
  24.         if (newFocus == null) {
  25.             return;
  26.         }
  27.         ViewParent convertView = getConvertView(newFocus);
  28.         if (convertView == null) {
  29.             return;
  30.         }
  31.         if (!(convertView instanceof View)) {
  32.             return;
  33.         }
  34.         Object tagView = ((View) convertView).getTag();
  35.         if (!(tagView instanceof IMFCHolder)) {
  36.             if (lastPosition
  37.                     != getAdapter().getCount() - 1) {
  38.                 smoothScrollToPositionFromTop(0, 0);
  39.                 lastPosition = -1;
  40.             }
  41.             return;
  42.         }
  43.         int focusedPosition = -1;
  44.         View focusedChild =  getFocusedChild();
  45.         if (focusedChild != null) {
  46.             focusedPosition =  getPositionForView(focusedChild);
  47.         }
  48.         if (focusedPosition != lastPosition) {
  49.             smoothScrollToPositionFromTop(focusedPosition, 50);
  50.             lastPosition = focusedPosition;
  51.         }
  52.     }
  53.     protected ViewParent getConvertView(View newFocus) {
  54.         ViewParent lastView = null;
  55.         ViewParent parent = newFocus.getParent();
  56.         if (parent == this){
  57.             return (ViewParent) newFocus;
  58.         }
  59.         while (parent != null) {
  60.             if (parent == this) {
  61.                 return lastView;
  62.             }
  63.             lastView = parent;
  64.             parent = parent.getParent();
  65.         }
  66.         return null;
  67.     }
  68.     public MFCGridView(Context context) {
  69.         super(context);
  70.         setFocusableInTouchMode(false);
  71.     }
  72.     public MFCGridView(Context context, AttributeSet attrs) {
  73.         super(context, attrs);
  74.         setFocusableInTouchMode(false);
  75.     }
  76.     public MFCGridView(Context context, AttributeSet attrs, int defStyleAttr) {
  77.         super(context, attrs, defStyleAttr);
  78.         setFocusableInTouchMode(false);
  79.     }
  80.     @Override
  81.     protected void onAttachedToWindow() {
  82.         super.onAttachedToWindow();
  83.         if (MFCUtil.isMFCEnable()) {
  84.             if (!mHasRegister) {
  85.                 getViewTreeObserver().addOnGlobalFocusChangeListener(mFocusChangeListener);
  86.                 mHasRegister = true;
  87.             }
  88.         }
  89.     }
  90.     @Override
  91.     protected void onDetachedFromWindow() {
  92.         super.onDetachedFromWindow();
  93.         if (MFCUtil.isMFCEnable()) {
  94.             getViewTreeObserver().removeOnGlobalFocusChangeListener(mFocusChangeListener);
  95.             mHasRegister = false;
  96.         }
  97.         clearDisappearingChildren();
  98.     }
  99. }
复制代码
MFCGridView使用方法:xml中直接引用即可,无需其他使用


---------------------------------------------------------分割线---------------------------------------------------------
依赖类IMFCHolder.java

  1. public interface IMFCHolder {
  2.     int getPosition();
  3. }
复制代码
MFCListView.java

  1. import com.baidu.navisdk.ui.util.MFCUtil;
  2. import android.content.Context;
  3. import android.util.AttributeSet;
  4. import android.view.View;
  5. import android.view.ViewParent;
  6. import android.view.ViewTreeObserver;
  7. import android.widget.ListView;
  8. public class MFCListView extends ListView {
  9.     protected boolean mHasRegister = false;
  10.     protected int lastPosition = -1;
  11.     private final ViewTreeObserver.OnGlobalFocusChangeListener mFocusChangeListener =
  12.             new ViewTreeObserver.OnGlobalFocusChangeListener() {
  13.                 @Override
  14.                 public void onGlobalFocusChanged(View oldFocus, View newFocus) {
  15.                     if (!isInTouchMode()) {
  16.                         refreshListViewScroll(oldFocus, newFocus);
  17.                     }
  18.                 }
  19.             };
  20.     protected void refreshListViewScroll(View oldFocus, View newFocus) {
  21.         if (getVisibility() != VISIBLE) {
  22.             return;
  23.         }
  24.         if (newFocus == null) {
  25.             return;
  26.         }
  27.         ViewParent convertView = getConvertView(newFocus);
  28.         if (convertView == null) {
  29.             return;
  30.         }
  31.         if (!(convertView instanceof View)) {
  32.             return;
  33.         }
  34.         Object tagView = ((View) convertView).getTag();
  35.         if (!(tagView instanceof IMFCHolder)) {
  36.             if (lastPosition
  37.                     != getAdapter().getCount() - getHeaderViewsCount() - getFooterViewsCount()
  38.                     - 1) {
  39.                 smoothScrollToPositionFromTop(0, 0);
  40.                 lastPosition = -1;
  41.             }
  42.             return;
  43.         }
  44.         IMFCHolder imfcHolder = (IMFCHolder) tagView;
  45.         int position = imfcHolder.getPosition();
  46.         if (position != lastPosition) {
  47.             smoothScrollToPositionFromTop(position + getHeaderViewsCount(), 50);
  48.             lastPosition = position;
  49.         }
  50.     }
  51.     protected ViewParent getConvertView(View newFocus) {
  52.         ViewParent lastView = null;
  53.         ViewParent parent = newFocus.getParent();
  54.         if (parent == this){
  55.             return (ViewParent) newFocus;
  56.         }
  57.         while (parent != null) {
  58.             if (parent == this) {
  59.                 return lastView;
  60.             }
  61.             lastView = parent;
  62.             parent = parent.getParent();
  63.         }
  64.         return null;
  65.     }
  66.     public MFCListView(Context context) {
  67.         super(context);
  68.         setFocusableInTouchMode(false);
  69.     }
  70.     public MFCListView(Context context, AttributeSet attrs) {
  71.         super(context, attrs);
  72.         setFocusableInTouchMode(false);
  73.     }
  74.     public MFCListView(Context context, AttributeSet attrs, int defStyleAttr) {
  75.         super(context, attrs, defStyleAttr);
  76.         setFocusableInTouchMode(false);
  77.     }
  78.     public MFCListView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
  79.         super(context, attrs, defStyleAttr, defStyleRes);
  80.         setFocusableInTouchMode(false);
  81.     }
  82.     @Override
  83.     public View getFocusedChild() {
  84.         return null;
  85.     }
  86.     @Override
  87.     protected void onAttachedToWindow() {
  88.         super.onAttachedToWindow();
  89.         if (MFCUtil.isMFCEnable()) {
  90.             if (!mHasRegister) {
  91.                 getViewTreeObserver().addOnGlobalFocusChangeListener(mFocusChangeListener);
  92.                 mHasRegister = true;
  93.             }
  94.         }
  95.     }
  96.     @Override
  97.     protected void onDetachedFromWindow() {
  98.         super.onDetachedFromWindow();
  99.         if (MFCUtil.isMFCEnable()) {
  100.             getViewTreeObserver().removeOnGlobalFocusChangeListener(mFocusChangeListener);
  101.             mHasRegister = false;
  102.         }
  103.         clearDisappearingChildren();
  104.     }
  105. }
复制代码
依赖类MFCUtil.java
  1. package com.baidu.navisdk.ui.util;
  2. import android.app.Activity;
  3. import com.baidu.naviauto.appcommon.AppLog;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. public class MFCUtil {
  7.     private static final String TAG = "MFCUtil";
  8.     public static final List<String> REQUEST_CHECK_LIST_STRING = new ArrayList<>();
  9.     public static boolean isMFCEnable() {
  10.         return true;
  11.     }
  12.     /**
  13.      *  返回false 不消费 调用者可以request
  14.      *  返回true   消费  调用者不可以request
  15.      * @param activity
  16.      * @param classname
  17.      * @return
  18.      */
  19.     public static boolean requestCheck(Activity activity, String classname) {
  20.         if (activity == null) {
  21.             return true;
  22.         }
  23.         if (!isMFCEnable()) {
  24.             return true;
  25.         }
  26.         if (activity.getWindow().getDecorView().isInTouchMode()){
  27.             return true;
  28.         }
  29.         checkRequestCheckList(activity);
  30.         if (REQUEST_CHECK_LIST_STRING == null) {
  31.             AppLog.e(TAG, "checkRequestCheckList  ==  " + classname);
  32.             return false;
  33.         }
  34.         for (int i = 0; i < REQUEST_CHECK_LIST_STRING.size(); i++) {
  35.             if (REQUEST_CHECK_LIST_STRING.get(i).equals(classname)) {
  36.                 AppLog.e(TAG, "false  ==  " + classname);
  37.                 return false;
  38.             }
  39.         }
  40.         AppLog.e(TAG, "false finish  ==  " + classname);
  41.         return false;
  42.     }
  43.     public static void checkRequestCheckList(Activity activity) {
  44.         if (REQUEST_CHECK_LIST_STRING != null && REQUEST_CHECK_LIST_STRING.size() == 0) {
  45.             REQUEST_CHECK_LIST_STRING.add("PowerNotification");
  46.             REQUEST_CHECK_LIST_STRING.add("RestrictionTipsView");
  47.             REQUEST_CHECK_LIST_STRING.add("RecommendTripTipsView");
  48.             REQUEST_CHECK_LIST_STRING.add("PushPoiNaviNotificationView");
  49.             REQUEST_CHECK_LIST_STRING.add("PushPoiNaviNotificationDialog");
  50.             REQUEST_CHECK_LIST_STRING.add("NaviAutoActivity");
  51.         }
  52.     }
  53.     public static void onDestory(){
  54.         if (REQUEST_CHECK_LIST_STRING != null){
  55.             REQUEST_CHECK_LIST_STRING.clear();
  56.         }
  57.     }
  58. }
复制代码
MFCListView现实使用例子:

1.xml代码中使用MFCListView类代替
2.adapter中,核心代码如下:

  1. @Override
  2.     public View getView(int position, View convertView, ViewGroup parent) {
  3.         ViewHolder viewHolder;
  4.         if (convertView == null) {
  5.             convertView = LayoutInflater.from(mContext).inflate(R.layout.item_column, null);
  6.             viewHolder = new ViewHolder();
  7.             viewHolder.textView = convertView.findViewById(R.id.text);
  8.             convertView.setTag(viewHolder);
  9.         } else {
  10.             viewHolder = (ViewHolder) convertView.getTag();
  11.         }
  12.         viewHolder.position = position;
  13.         viewHolder.textView.setText(mProvinShotNameArr[position]);
  14.         return convertView;
  15.     }
  16. public static class ViewHolder  implements IMFCHolder {
  17.         TextView textView;
  18.         int position;
  19.         @Override
  20.         public int getPosition() {
  21.             return position;
  22.         }
  23.     }
复制代码
实现乐成:子控件核心滑到中心,gridview父控件也跟着下滑了!!!




免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

星球的眼睛

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表