[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-4331":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":15,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":16,"rankGlobal":9,"rankLanguage":9,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":20,"hasPages":18,"topics":21,"createdAt":9,"pushedAt":9,"updatedAt":22,"readmeContent":23,"aiSummary":24,"trendingCount":15,"starSnapshotCount":15,"syncStatus":25,"lastSyncTime":26,"discoverSource":27},4331,"SwipeBackLayout","ikew0ng\u002FSwipeBackLayout","ikew0ng","An Android library that help you to build app with swipe back gesture.",null,"Java",6090,1391,219,111,0,40.43,"Apache License 2.0",false,"master",true,[],"2026-06-12 02:01:02","SwipeBackLayout\n===\n\nAn Android library that help you to build app with swipe back gesture.\n\n\n![](https:\u002F\u002Fgithub.com\u002FIssacw0ng\u002FSwipeBackLayout\u002Fblob\u002Fmaster\u002Fart\u002Fscreenshot.png?raw=true)\n\n\nDemo Apk\n===\n[GooglePlay](https:\u002F\u002Fplay.google.com\u002Fstore\u002Fapps\u002Fdetails?id=me.imid.swipebacklayout.demo)\n\n\nRequirement\n===\nThe latest android-support-v4.jar should be referenced by your project.\n\nUsage\n===\n1. Add SwipeBackLayout as a dependency to your existing project.\n2. To enable SwipeBackLayout, you can simply make your `Activity` extend `SwipeBackActivity`:\n\t* In `onCreate` method, `setContentView()` should be called as usual.\n\t* You will have access to the `getSwipeBackLayout()` method so you can customize the `SwipeBackLayout`. \n3. Make window translucent by adding `\u003Citem name=\"android:windowIsTranslucent\">true\u003C\u002Fitem>` to your theme.\n\nSimple Example\n===\n```\npublic class DemoActivity extends SwipeBackActivity implements View.OnClickListener {\n    private int[] mBgColors;\n\n    private static int mBgIndex = 0;\n\n    private String mKeyTrackingMode;\n\n    private RadioGroup mTrackingModeGroup;\n\n    private SwipeBackLayout mSwipeBackLayout;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_demo);\n        changeActionBarColor();\n        findViews();\n        mKeyTrackingMode = getString(R.string.key_tracking_mode);\n        mSwipeBackLayout = getSwipeBackLayout();\n\n        mTrackingModeGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {\n            @Override\n            public void onCheckedChanged(RadioGroup group, int checkedId) {\n                int edgeFlag;\n                switch (checkedId) {\n                    case R.id.mode_left:\n                        edgeFlag = SwipeBackLayout.EDGE_LEFT;\n                        break;\n                    case R.id.mode_right:\n                        edgeFlag = SwipeBackLayout.EDGE_RIGHT;\n                        break;\n                    case R.id.mode_bottom:\n                        edgeFlag = SwipeBackLayout.EDGE_BOTTOM;\n                        break;\n                    default:\n                        edgeFlag = SwipeBackLayout.EDGE_ALL;\n                }\n                mSwipeBackLayout.setEdgeTrackingEnabled(edgeFlag);\n                saveTrackingMode(edgeFlag);\n            }\n        });\n    }\n...\n```\n\nDownload\n===\nDownload via Jcenter:\n```\ncompile 'me.imid.swipebacklayout.lib:library:1.1.0'\n```\n\n\nSupport\n===\n\u003Cimg src=\"https:\u002F\u002Fgithub.com\u002Fikew0ng\u002FSwipeBackLayout\u002Fblob\u002Fmaster\u002Fart\u002Fsupport.jpeg\" width=\"300\">\n\n\n\nPull Requests\n===\nI will gladly accept pull requests for fixes and feature enhancements but please do them in the develop branch.\n\nLicense\n===\n\n   Copyright 2013 Isaac Wang\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n     http:\u002F\u002Fwww.apache.org\u002Flicenses\u002FLICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n","SwipeBackLayout 是一个帮助开发者在Android应用中实现滑动返回手势的库。其核心功能是通过简单的集成，使任何Activity都能支持从屏幕边缘滑动以关闭当前页面的功能，并且提供了自定义滑动方向（左、右或底部）以及滑动区域大小的能力。此外，该库还允许调整背景颜色和透明度等视觉效果，增强用户体验。适用于需要提供更直观导航方式的应用场景，如新闻阅读器、图片浏览等，能够显著提升用户界面的交互性和流畅感。基于Java开发，使用Apache License 2.0授权。",2,"2026-06-11 02:59:40","top_language"]