Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emmaguy/clean-status-bar
Tidy up your Android status bar before taking screenshots for the Play Store
https://github.com/emmaguy/clean-status-bar
Last synced: about 1 month ago
JSON representation
Tidy up your Android status bar before taking screenshots for the Play Store
- Host: GitHub
- URL: https://github.com/emmaguy/clean-status-bar
- Owner: emmaguy
- Created: 2014-09-07T16:37:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-08-01T19:10:10.000Z (over 4 years ago)
- Last Synced: 2024-08-09T13:16:00.825Z (5 months ago)
- Language: Java
- Size: 8.66 MB
- Stars: 886
- Watchers: 28
- Forks: 82
- Open Issues: 18
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome - clean-status-bar - Tidy up your Android status bar before taking screenshots for the Play Store (etc)
- awesome - clean-status-bar - Tidy up your Android status bar before taking screenshots for the Play Store (etc)
README
# DEPRECATED
This project no longer works on recent versions of Android. [Use Android's build-in Demo mode instead](https://developer.android.com/studio/debug/dev-options#general).
For the curious, [more information about the history of this project can be found in this blog post](http://emmav.me/posts/2015-oct-11-clean-status-bar/).
---
![banner](images/banner_before_after.png)
# Clean Status Bar
Tired of Photoshopping out notifications/low battery to make a nice, clean status bar for the Play Store? Run this app first - it draws over your status bar, showing only a full battery and clock.It runs as a service, so you can swap to other apps to take screenshots.
App available [here](https://play.google.com/store/apps/details?id=com.emmaguy.cleanstatusbar) or in [Releases](https://github.com/emmaguy/clean-status-bar/releases)
Use the `ToggleReceiver` to enable/disable Clean Status Bar programmatically, e.g. to automate taking screenshots.
```java
final Bundle extras = new Bundle();
extras.putBoolean("enabled", true);final Intent intent = new Intent("com.emmaguy.cleanstatusbar.TOGGLE");
intent.putExtras(extras);sendBroadcast(intent);
```License
--------Copyright 2014-2015 Emma Guy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.