文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android中怎么通过自定义View 实现QQ侧滑菜单

2023-05-30 21:31

关注

这期内容当中小编将会给大家带来有关Android中怎么通过自定义View 实现QQ侧滑菜单,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

布局代码

<fierce_luk.com.sideslipviewdemo2.SideslipView    android:id="@+id/my_veiw"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:scrollbars="none"    luk:leftPanding="200dp">    <!--如果菜单在左边直接用 LinearLayout-->    <FrameLayout      android:layout_width="match_parent"      android:layout_height="match_parent"      android:orientation="horizontal">      <TextView        android:id="@+id/image2"        android:layout_width="match_parent"        android:layout_height="match_parent"        android:background="@mipmap/homepage"        android:gravity="center"        android:tag="0"        android:text="菜单"        android:textColor="@color/colorAccent"        android:textSize="60sp" />      <TextView        android:id="@+id/image1"        android:layout_width="match_parent"        android:layout_height="match_parent"        android:background="@color/color1"        android:gravity="center"        android:tag="1"        android:text="主页面"        android:textColor="@color/colorAccent"        android:textSize="60sp" />    </FrameLayout>    <!--<fragment-->    <!--android:name="com.luk.bluetoothapp.fragment.MyBluetoothDevice"-->    <!--android:layout_width="match_parent"-->    <!--android:layout_height="match_parent"-->    <!--android:tag="1" />-->    <!--<fragment-->    <!--android:name="com.luk.bluetoothapp.fragment.HomeFragment"-->    <!--android:layout_width="match_parent"-->    <!--android:layout_height="match_parent"-->    <!--android:tag="0" />-->  </fierce_luk.com.sideslipviewdemo2.SideslipView>

自定义的侧滑视图

最核心的部分

public class SideslipView extends HorizontalScrollView {  private int mScreenWidth;//屏幕宽度  private int mMenuLeftPadding;  private int mBluetoothWidth;//菜单的宽度  private int mHalfMenuWidth;  View home;  View bluetooth;  protected boolean isOpen;  protected boolean isFirst = true;  public SideslipView(Context context) {    // super 改 this    this(context, null);  }  public SideslipView(Context context, AttributeSet attrs) {    // super 改 this    this(context, attrs, 0);  }  public SideslipView(Context context, AttributeSet attrs, int defStyleAttr) {    super(context, attrs, defStyleAttr);    //测量屏幕宽度    WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);    DisplayMetrics metrics = new DisplayMetrics();    wm.getDefaultDisplay().getMetrics(metrics);    mScreenWidth = metrics.widthPixels;    // mScreenWidth = context.getResources().getDisplayMetrics().widthPixels;    Log.e("TAG", "MyScrollView: mScreenWidth" + mScreenWidth);    //获取 自定义的属性值    TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyScrollView);    int n = a.length();    for (int i = 0; i < n; i++) {      int arrt = a.getIndex(i);      switch (arrt) {        case R.styleable.MyScrollView_leftPanding:          mMenuLeftPadding = (int) a.getDimension(R.styleable.MyScrollView_leftPanding, 0);          break;        default:          break;      }    }    Log.e("TAG", "MyScrollView: mMenuLeftPadding" + mMenuLeftPadding);    a.recycle();  }  @Override  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {    if (isFirst) {      //获取子布局 并设置宽度      //如果菜单在左边 用LinearLayout就行//      LinearLayout layout = (LinearLayout) this.getChildAt(0);            FrameLayout layout = (FrameLayout) this.getChildAt(0);      home = layout.getChildAt(1);      bluetooth = layout.getChildAt(0);      LayoutParams params = new LayoutParams(mBluetoothWidth,          getResources().getDisplayMetrics().heightPixels);      params.setMargins(mScreenWidth, 0, 0, 0);      bluetooth.setLayoutParams(params);      mBluetoothWidth = mScreenWidth - mMenuLeftPadding;      home.getLayoutParams().width = mScreenWidth;      bluetooth.getLayoutParams().width = mBluetoothWidth;      mHalfMenuWidth = mBluetoothWidth / 2;      isFirst = false;    }    super.onMeasure(widthMeasureSpec, heightMeasureSpec);  }  @Override  protected void onLayout(boolean changed, int l, int t, int r, int b) {    super.onLayout(changed, l, t, r, b);    //首先隐藏 Bluetooth    if (changed)      this.scrollTo(0, mBluetoothWidth);  }  Animation anim;  @Override  public boolean onTouchEvent(MotionEvent ev) {    switch (ev.getAction()) {      case MotionEvent.ACTION_UP:        int scrollX = getScrollX();        if (scrollX >= mHalfMenuWidth) {          Log.e("TAG", "====");          this.smoothScrollTo(mBluetoothWidth, 0);          isOpen = true;        } else {          this.smoothScrollTo(0, 0);          isOpen = false;        }        //必须消耗事件        return true;    }    return super.onTouchEvent(ev);    //return true;  }    protected void openMenu() {    if (isOpen)      return;    this.smoothScrollTo(mBluetoothWidth, 0);    isOpen = true;  }    protected void closeMenu() {    if (!isOpen)      return;    this.smoothScrollTo(0, 0);    isOpen = false;  }    public void toggleMenu() {    if (isOpen)      closeMenu();    else      openMenu();  }  @Override  protected void onScrollChanged(int l, int t, int oldl, int oldt) {    super.onScrollChanged(l, t, oldl, oldt);//此处 l 起始值为零(没有偏移)    Log.e("TAG", "l=" + l + " t=" + t);    Log.e("TAG", "oldl=" + oldl + " oldt=" + oldt);    // scale 在 1 到 0 之间    float scale = l * 1.0f / mBluetoothWidth;        float scaleLeft = 0.4f - 0.4f * scale;        ViewHelper.setTranslationX(bluetooth, -(mBluetoothWidth * scaleLeft));    Log.e("TAG", "mBluetoothWidth+" + mBluetoothWidth);    Log.e("TAG", "=============" + mBluetoothWidth * scale + "scale" + scale);  }}

扩展

添加之定义属性 让用户配置菜单距离右边的边距的值;
首先在values文件夹下新建一个attr.xml,写入以下内容:

<resources>  <declare-styleable name="MyScrollView">    <attr name="rightPanding" format="dimension" />    <attr name="leftPanding" format="dimension" />  </declare-styleable></resources>

在布局里设置边距

 <fierce_luk.com.sideslipviewdemo2.SideslipView    android:id="@+id/my_veiw"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:scrollbars="none"    luk:leftPanding="200dp">

上述就是小编为大家分享的Android中怎么通过自定义View 实现QQ侧滑菜单了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯