lockscreen

Customizing Android Lock Screen functionality?

蓝咒 提交于 2019-11-30 22:40:09
I will like to develop an App which modifies LockScreen of Android. I have read in some forums that it is not supported as yet in the SDK but there are some applications available that does exactly that. One can surf Screen Suite Lock Screen Can someone let me know is it actually possible to customize LockScreen and implement our own way of Lock Screen? Regards Sunil Taiko It is possible to have views displayed above the lock screen and to make it dismiss the lock screen. It's a dirty solution, but the only one as long as there is no api to replace the lock screen. Android activity over

Understanding custom lock implementation on Android via home screen replacement technique

喜欢而已 提交于 2019-11-30 21:38:08
I've been researching about this question a lot. I asked a related question this week.The most helpful and relevant links in the area are this and this . I want to understand how it works and all, if implemented as home screen replacement app. Quick questions: If implemented which screen should be set as default? Our home screen replacement or original home screen? Please read the comments after the answer of this question where asker figured out a way to do it. In the end he says: "Figured it out! Gotta disable the manifest intent filter by using setComponentEnabledSetting(), and then turn it

Add image on lock screen in iOS app, when app is running in background

走远了吗. 提交于 2019-11-30 18:07:43
问题 There are many question on site like Programatically changing the iOS lock-screen , How to set lock screen , wallpaper and Ringtone programmatically in iPhone? All say that apple will reject if we modify the lock-Screen image. But I seen it in many apps. Example Saavn is in AppStore. In this if a song is playing and device is locked, It shows the image of the current album on the lock screen. Please share if anybody know how it can be done. Thanks. 回答1: Music apps can change the lock screen

Customizing Android Lock Screen functionality?

早过忘川 提交于 2019-11-30 17:50:26
问题 I will like to develop an App which modifies LockScreen of Android. I have read in some forums that it is not supported as yet in the SDK but there are some applications available that does exactly that. One can surf Screen Suite Lock Screen Can someone let me know is it actually possible to customize LockScreen and implement our own way of Lock Screen? Regards Sunil 回答1: It is possible to have views displayed above the lock screen and to make it dismiss the lock screen. It's a dirty solution

Custom Lock Screen Delay When Wake

坚强是说给别人听的谎言 提交于 2019-11-30 16:39:18
I'm trying to make a custom lock screen app, but I'm not sure if I'm going about it the right way. I have a broadcast receiver that listens to when the screen is turned on and starts my lock screen activity. This receiver is registered inside a service, which also disables the default lock screen. The problem is, there is a slight delay between when the screen is turned on and the lock screen activity shows up. How would I go about doing it so that it shows up right away? My code for the service: @Override public void onCreate() { super.onCreate(); IntentFilter filter = new IntentFilter(Intent

Display Custom Information on Lock Screen In Android [duplicate]

馋奶兔 提交于 2019-11-30 09:52:12
This question already has an answer here: Android Lock Screen Widget 3 answers I want to custom LockScreen. The default Lock screen is like this. I want to modify this portion of the Lock Screen & Let all other things remain the same. When user locks his phone, it should display custom information on that red box. So far i have seen one app that does something similar to this things : WidgetLocker StackOverflow Search so far : Is there a way to override the lock pattern screen? which says not possible. Android Lock Screen Widget (Kevin TeslaCoil's Answer) This really tells something

Set lockscreen to “None” programmatically?

99封情书 提交于 2019-11-30 06:48:55
I have the requirement to disable the lock screen and set the lock screen type to "None". My device is rooted (can run with SU permission) + can run as a system application with system permissions (under /system/app). I have tried a few things to no avail. Try 1 This seems to be deprecated and not working. KeyguardManager manager = (KeyguardManager) this.getSystemService(KEYGUARD_SERVICE); KeyguardLock lock = manager.newKeyguardLock("abc"); lock.disableKeyguard(); Try 2 This didn't work either. Mount system partition as writable Edit /data/data/com.android.providers.settings/databases/settings

developing an android lock screen application [closed]

瘦欲@ 提交于 2019-11-30 06:35:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I want to develop my own lock screen for Android that will replace the default android lock screen. I do not have any idea how to start. Is there any tutorial about it or an example I can download and open in my eclipse and run ? Thanks a lot 回答1: What you actually want to do is create an application which will

Understanding custom lock implementation on Android via home screen replacement technique

可紊 提交于 2019-11-30 05:34:22
问题 I've been researching about this question a lot. I asked a related question this week.The most helpful and relevant links in the area are this and this. I want to understand how it works and all, if implemented as home screen replacement app. Quick questions: If implemented which screen should be set as default? Our home screen replacement or original home screen? Please read the comments after the answer of this question where asker figured out a way to do it. In the end he says: "Figured it

Android ICS native lockscreen

大兔子大兔子 提交于 2019-11-30 05:25:22
I've been looking for the past 2 days on SW, google and so on. I'm looking for a way to implement an activity that comes with the native Android ICS lockscreen as the one shown in the screens below. Those screens come from Player Pro but I noticed that also other players ( PlayerPro for instance ) have the same feature that looks exactly the same, that's why i think it's something native or at least, there is a common way to implement it. So far I only managed to get and Activity that replace the lockscreen using these flags: WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED WindowManager