Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I’m trying to figure out where different icon files appear on a device.
– For example, if the notification icon in the status bar is the same one that appears in the notification drawer. See attached image for more a better explaination.
Notification icons are set in the Notification.Builder
https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#setLargeIcon(android.graphics.Bitmap)
The difference in the picture on the right is because one shows a locked phone and the other shows unlocked.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
When you are playing an app,time to alarm!If show a activity to remind you,it will disturb you!So,how to pop a bubble on other apps to remind you?
Create custom notification with builder or you can create view For chat head like bubble view you can use facebook like chat head Here is one sample for this chat head you have to modify the working functions as per your requirement. or there is one nice solution here
You can use a Notification that will live in the status bar until you click on it or swipe it away to dismiss.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I wants to create my own lock screen which replaces system lock screen with customized pictures changing each and every time locks open.
One should be able unlock screen by tapping.
Here is Github source code you can find here Source Code
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make an Android app that sends a mail when i get something in my notification bar on my phone. I can´t find any information about how to check if there is something in the notification bar. Is this possible? If so, is this documented anywhere?
Write a NotificationListenerService. It will be notified as notifications come and go.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
This is my problem:
I want to place my ads at the bottom of the screen when i input text from Edit text. Please see attached image. Thanks for support.
You can't. When the keyboard is up, it owns as much of the screen as it wants (it tells Android how big it is_, and that area starts from the bottom. You can't get an area below it.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I'm creating an app and i'm wondering it there's a possible way to change the color of the notification bar. Thanks.
KitKat + devices can get system bar tinted.
I just found this library, it may be close to what you are looking for :
https://github.com/jgilfelt/SystemBarTint
But it will only work on KitKat+. Before that, there was no API to change these components, there were considered part of the system, not of apps.