博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sliding Menu Demos 浅析:Sliding Title Bar 与 Sliding Content Only
阅读量:5294 次
发布时间:2019-06-14

本文共 1945 字,大约阅读时间需要 6 分钟。

Sliding Title Bar 与 Sliding Content Only两个demo实现了不同的功能,前者在用户滑动的时候,Actionbar也能跟随主Activity移动,后者则保持Actionbar位置不变。

Sliding Title Bar 代码:

public class SlidingTitleBar extends BaseActivity {    public SlidingTitleBar() {        super(R.string.title_bar_slide);    }        @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        // set the Above View        setContentView(R.layout.content_frame);        getSupportFragmentManager()        .beginTransaction()        .replace(R.id.content_frame, new SampleListFragment())        .commit();                setSlidingActionBarEnabled(true);    }    }

SlidingTitleBar 继承了 BaseActivity ,BaseActivity的代码如下:

@Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setTitle(mTitleRes);        // set the Behind View        setBehindContentView(R.layout.menu_frame);        if (savedInstanceState == null) {            //开启事务            FragmentTransaction t = this.getSupportFragmentManager().beginTransaction();            mFrag = new SampleListFragment();            t.replace(R.id.menu_frame, mFrag);//将SampleListFragment添加到FrameLayout布局中来            t.commit();//提交事务        } else {            mFrag = (ListFragment)this.getSupportFragmentManager().findFragmentById(R.id.menu_frame);        }        // 配置Sliding Menu        SlidingMenu sm = getSlidingMenu();        sm.setShadowWidthRes(R.dimen.shadow_width);        sm.setShadowDrawable(R.drawable.shadow);        sm.setBehindOffsetRes(R.dimen.slidingmenu_offset);        sm.setFadeDegree(0.35f);        sm.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);        getSupportActionBar().setDisplayHomeAsUpEnabled(true);    }

BaseActivity只是配置了隐藏的视图,而在SlidingTitleBar中配置了最上层的视图。Sliding Menu本质上使用的是类似Framelayout的布局加上复杂的动画。

其中:

setSlidingActionBarEnabled(true);

可以配置Actionbar是否会随内容滑动。

转载于:https://www.cnblogs.com/dingchao823/p/4794378.html

你可能感兴趣的文章
TCL:表格(xls)中写入数据
查看>>
SQL SERVER 2005中如何获取日期(一个月的最后一日、一年的第一日等等)
查看>>
django 学习笔记(转)
查看>>
控制台程序秒变Windows服务(Topshelf)
查看>>
字节流与字符流的区别详解
查看>>
20141026--娱乐-箱子
查看>>
自定义分页
查看>>
Oracle事务
查看>>
任意输入10个int类型数据,把这10个数据首先按照排序输出,挑出这些数据里面的素数...
查看>>
String类中的equals方法总结(转载)
查看>>
图片问题
查看>>
bash使用规则
查看>>
AVL数
查看>>
第二章练习
查看>>
ajax2.0
查看>>
C#时间截
查看>>
C语言程序设计II—第九周教学
查看>>
C# 获取系统时间及时间格式转换
查看>>
全栈12期的崛起之捡点儿有用的说说
查看>>
基础类型
查看>>