码迷,mamicode.com
首页 > 其他好文 > 详细

用SwipeBackLayout实现滑动关闭当前Activity

时间:2014-10-31 15:37:15      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   color   os   ar   使用   

bubuko.com,布布扣  

  说起SwipeBackLayout,我对它还是有一定怨念的。当时就希望能实现关闭当前Activity的效果,但完全搜不当相关的东西,最后好不容易搜到了这个SwipeBackLayout,觉得可以实现滑动关闭了,但用上后却出现了黑屏的问题,好在最后都解决了。这也说明了任何一个开源项目都是在不断完善的,完善的动力就是靠大家的提意见和热情,SwipeBackLayout作为中国的一款优秀开源项目值得让大家称赞!

好,下面就开始学习怎么使用它吧。

一、让需要滑动的Activity基础自定义的style

这里就是为了解决滑动黑屏的问题

    <style name="KaleTheme" parent="AppBaseTheme">
        <!-- 解决activity切换时的黑屏问题 -->
        <item name="android:windowIsTranslucent">true</item>  
    </style>

 

styles.xml中的全部文件:

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>
    
    <style name="KaleTheme" parent="AppBaseTheme">
        <!-- 解决activity切换时的黑屏问题 -->
        <item name="android:windowIsTranslucent">true</item>  
    </style>

</resources>

 

我是直接用Application使用了这个样式,仅仅为了演示。

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/KaleTheme" >

 

二、用Activity继承一个类

如果你是要兼容Actionbar那么就继承SwipeBackActionbarActivity,这个类是我自己改的,原来的lib中没有。如果不用兼容,那么直接用SwipeBackActivity即可。

 

三、在方法中找到SwipeBackLayout,并设置滑动的区域和方向

这个就是简单的设置,我直接贴代码了。

package com.kale.swipbacklayouttest;

import me.imid.swipebacklayout.lib.SwipeBackLayout;
import me.imid.swipebacklayout.lib.app.SwipeBackActionbarActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

/**
 * @author:Jack Tony
 * @tips  :如果要兼容,那么继承SwipeBackActionbarActivity,否则继承SwipeBackActivity
 * @date  :2014-10-31
 */
public class MainActivity extends SwipeBackActionbarActivity {

     private SwipeBackLayout mSwipeBackLayout;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        mSwipeBackLayout = getSwipeBackLayout();
        //设置可以滑动的区域,推荐用屏幕像素的一半来指定
        mSwipeBackLayout.setEdgeSize(200);
        //设定滑动关闭的方向,SwipeBackLayout.EDGE_ALL表示向下、左、右滑动均可。EDGE_LEFT,EDGE_RIGHT,EDGE_BOTTOM
        mSwipeBackLayout.setEdgeTrackingEnabled(SwipeBackLayout.EDGE_ALL);
        
        Button btn = (Button)findViewById(R.id.open_button);
        btn.setOnClickListener(new OnClickListener() {
            
            @Override
            public void onClick(View v) {
                // TODO 自动生成的方法存根
                startActivity(new Intent(MainActivity.this,MainActivity.class));
            }
        });
    }


}

 

上面还添加了一个button,是用来开启新的Activity,主要是便于测试的。好啦,你看使用方式十分简单吧,下面是源码:

 

源码下载:用开源项目SwipBackLayout实现滑动关闭Activity

 

用SwipeBackLayout实现滑动关闭当前Activity

标签:android   style   blog   http   io   color   os   ar   使用   

原文地址:http://www.cnblogs.com/tianzhijiexian/p/4065069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!