Related
Hi guys,
i hope it's ok to start a thread about this, didn't found a "searching-for-an-app-thread".
Is it possible to get this widget from the market or is it LG-only? If so, what's the name of it? Or is it possible to port it from LG-devices?
Thank you for helpful answers.
Anyone any idea???
there's chatter about that one online, i googled it a few weeks back. Could not find the apk though
try palmary weather pro. best one out there.
Seen this before too. Most likely a LG launcher specific widget. If true, it won't run on any other phone (unless if someone managed to port a LG launcher to a non-LG phone, but why would you do that?)
snapper.fishes said:
Seen this before too. Most likely a LG launcher specific widget. If true, it won't run on any other phone (unless if someone managed to port a LG launcher to a non-LG phone, but why would you do that?)
Click to expand...
Click to collapse
For teh very same reason someone ported the TouchWiz launcher from a Samsung phone to a non Samsung phone
It's a pity. Liked the look of that widget. But if it's not available... well, tough luck.
Anyway, thank you guys
check this
Animated Weather for Android - Weather forecast application. The exquisitely realistic video effects of cloudiness, rain and snow provide the vivid sensation of current or future weather conditions for more than 50000 locations over the world.
http://www.weather-android.com/
Video:
http://www.youtube.com/watch?v=KY9qkmzbBy4
Want this widget too, it's so cool!!!
I haven't installed this so not sure if it's in with the widgets, but have you given this a try ?
http://forum.xda-developers.com/showthread.php?t=769138
They do work, but the weather widget isn't one of them...
loved it
check this out mate.. i really liked it and sending you the link to it...just click and enjoy
Yup - can confirm that this is working fine on sgs:
http://forum.xda-developers.com/showpost.php?p=10969965&postcount=8
Hey guys, I've looked for this everywhere including the thread itself (for Widgetlocker themes) but cannot find what I'm after.
I am looking for one that is exactly like the stock slider for the SGS2 lockscreen (messaging and dialer). I know there are the Motoblur ones, but they do not quite fit the bill.
If anyone can help me find or someone design one I will be most grateful an possibly a small donation.
Thanks
admartian said:
Hey guys, I've looked for this everywhere including the thread itself (for Widgetlocker themes) but cannot find what I'm after.
I am looking for one that is exactly like the stock slider for the SGS2 lockscreen (messaging and dialer). I know there are the Motoblur ones, but they do not quite fit the bill.
If anyone can help me find or someone design one I will be most grateful an possibly a small donation.
Thanks
Click to expand...
Click to collapse
+1 add me on the list with you I'm also searching for that and didn't find it,
Did you try to send a PM to zHk3R ? (the guy ho opened the thread for widget locker's themes)
If not I could send it with copy for you
AIRagon said:
+1 add me on the list with you I'm also searching for that and didn't find it,
Did you try to send a PM to zHk3R ? (the guy ho opened the thread for widget locker's themes)
If not I could send it with copy for you
Click to expand...
Click to collapse
That would be great!
Found it
admartian said:
That would be great!
Click to expand...
Click to collapse
Okay, I've found this in the widget locker's theme Thread, did'nt try it yet : Link
Let's give it a try and see
Edit : Works perfectly for me
AIRagon said:
Okay, I've found this in the widget locker's theme Thread, did'nt try it yet : Link
Let's give it a try and see
Edit : Works perfectly for me
Click to expand...
Click to collapse
I see the zip files but not the whl file that generally goes along with locker themes. How exactly did you apply this?
Never mind I am an idiot
Hi Folks:
I am a developer and developed a contact widget that could put all your contacts on your homescreen, and bring up the QuickContact dialog when user click a contact. The app has a free already available on the Goolge Play Store for a long time. The source code is availalbe on Github.
My widget is welcomed by most of users, however got some serious problems on Sony Xperia devices. The QuickContact dialog seems not poping up and freezes user's homescreen untill they hit the Back button.This is the line for bringining up the Quick Contact dialog for a particular contact:
QuickContact.showQuickContact(context, intent.getSourceBounds(), uri, ContactsContract.QuickContact.MODE_SMALL, null);
I noticed that Sony UI does have a similar QuickContact dialog and wondering how I could use that?
http://forum.xda-developers.com/forumdisplay.php?f=1182
do u see that section?
/and about xperia's problem : add new widget to homescreen and then choose contact, select which contact u want to see in the homescreen
and done!
hungragezone said:
http://forum.xda-developers.com/forumdisplay.php?f=1182
do u see that section?
/and about xperia's problem : add new widget to homescreen and then choose contact, select which contact u want to see in the homescreen
and done!
Click to expand...
Click to collapse
wrong thread dude
Moved to Q&A
I will really appreciate if anyone could provide some help here
Hey, I found the solution.
you get the contactUri wrong in your ContactAccessor.java, you use: Uri contactUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId);
what works for me: Uri contactUri = ContactsContract.Contacts.getLookupUri(context.getContentResolver(), ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId));
Btw, your code was great help for me, thank you for that!
2ma said:
Hey, I found the solution.
you get the contactUri wrong in your ContactAccessor.java, you use: Uri contactUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId);
what works for me: Uri contactUri = ContactsContract.Contacts.getLookupUri(context.getContentResolver(), ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId));
Btw, your code was great help for me, thank you for that!
Click to expand...
Click to collapse
Thanks so much for the help! I have made the changes according to your suggestion: https://github.com/yuyang226/ContactsWidgetICS/commit/40820b9d49eff16b06050f3c1614c2911f429dbf.
I have also build a binary apk for anyone to try it out: https://dl.dropboxusercontent.com/u/6712710/ContactsWidgetICS.apk.
Finally, may I know which Xperia device you are using and which Android version are you using? I will publish this build to Play store if it works.
Looks like the previous change not working for Samsung Touchwiz, and I have made further changes to fix that problem: https://github.com/yuyang226/ContactsWidgetICS/commit/822127ccf504b397fb747faedbac92a0ce42a5d6
Please try this build instead: https://dl.dropboxusercontent.com/u/6712710/ContactsWidgetICS.apk
yuyang226 said:
Looks like the previous change not working for Samsung Touchwiz, and I have made further changes to fix that problem: https://github.com/yuyang226/ContactsWidgetICS/commit/700b5ed0e271b0ca1f5307c83d2f29e0c636e3a3
Please try this build instead: https://dl.dropboxusercontent.com/u/6712710/ContactsWidgetICS.apk
Click to expand...
Click to collapse
Hey I haven't tested your app, I'm just using the same approach The original code worked on nexus7,nexus S, sony tipo, but it wasn't working on the sony sola.
The one I wrote worked on all four, I only have these devices right now. I'll test this, because my app uses the quickcontact too, and I would like it work on all the devices.
It seems to me, problem is, that non-stock devices use the contactUri somehow differently. Will test it, and report back!
2ma said:
Hey I haven't tested your app, I'm just using the same approach The original code worked on nexus7,nexus S, sony tipo, but it wasn't working on the sony sola.
The one I wrote worked on all four, I only have these devices right now. I'll test this, because my app uses the quickcontact too, and I would like it work on all the devices.
It seems to me, problem is, that non-stock devices use the contactUri somehow differently. Will test it, and report back!
Click to expand...
Click to collapse
Thank you buddy! Just let me know after you test my build. It is a shame for Sony that they changed the way how QuickContact dialog works.
yuyang226 said:
Thank you buddy! Just let me know after you test my build. It is a shame for Sony that they changed the way how QuickContact dialog works.
Click to expand...
Click to collapse
Your version works on the sony sola, tipo, nexus7 and nexus S. So, touch wiz needs some extra love too...that's just great...
I don't know why they are doing this, but it's a pain in the a$$. Anyway, I hope this works now on all the rest of the devices!
Thx for making your code available!! As I said, it was a great starting point
edit: forget to say the android version: sola and tipo run on 4.04, nexus 7 on the latest 4.2, and nexus s on 4.1
2ma said:
Your version works on the sony sola, tipo, nexus7 and nexus S. So, touch wiz needs some extra love too...that's just great...
I don't know why they are doing this, but it's a pain in the a$$. Anyway, I hope this works now on all the rest of the devices!
Thx for making your code available!! As I said, it was a great starting point
Click to expand...
Click to collapse
thanks for the test report, and my app can finally support Sony devices!
Just received my Korean LG G4, everything worked well except one issue and I have to fix.
Making a call is annoying for example when I need to place a call I have to remove the international code for example +97150******* will give me invalid number so I have to edit each number in my contact list by removing +971 and just start with 05********
One more thing my G4 always act like I'm in korea, weather app and the widget on the look screen there are 2 o'clock my country (UAE) and Korea.
Any solution for these problems?
Power_Getter said:
Just received my Korean LG G4, everything worked well except one issue and I have to fix.
Making a call is annoying for example when I need to place a call I have to remove the international code for example +97150******* will give me invalid number so I have to edit each number in my contact list by removing +971 and just start with 05********
One more thing my G4 always act like I'm in korea, weather app and the widget on the look screen there are 2 o'clock my country (UAE) and Korea.
Any solution for these problems?
Click to expand...
Click to collapse
Did you check Home dialing prefix is enabled or not? If enabled, then disable it.
BTW, where did you buy the phone from? Crazydeals? How much?
1. For the international code problem something looks wrong, what happens when u need to call abroad?
Are your numbers synced with Google contacts?
Try the suggested fix in the reply by skr
2. Did you try changing the settings to obtain clock data from network? Or set by u to fix the time issue?
If it's the weather app Switch GPS on and let it aquire ur location, that should fix weather and clock.
skr_xd said:
Did you check Home dialing prefix is enabled or not? If enabled, then disable it.
BTW, where did you buy the phone from? Crazydeals? How much?
Click to expand...
Click to collapse
Where I can find dialing prefix? Tried call sitting and i didn't find it.
skr_xd said:
Did you check Home dialing prefix is enabled or not? If enabled, then disable it.
BTW, where did you buy the phone from? Crazydeals? How much?
Click to expand...
Click to collapse
mazroui said:
1. For the international code problem something looks wrong, what happens when u need to call abroad?
Are your numbers synced with Google contacts?
Try the suggested fix in the reply by skr
2. Did you try changing the settings to obtain clock data from network? Or set by u to fix the time issue?
If it's the weather app Switch GPS on and let it aquire ur location, that should fix weather and clock.
Click to expand...
Click to collapse
It says this phone is unlocked but for some reason it's stuck with korea like the weather app and widget clock. GPS is turned on and more over i did a full reset twice while my sim inside incase this will solve it but it still.
Rooting the phone wasn't my target so to keep it updated with LG but even the root is not out yet to change the buid.prop
It says
ro.product.locale.language=ko <--- will change it to en
ro.product.locale.region=KR <--- and this to US
Strange, my weather and everything is in English. I just changed the language to English in settings. I am in Korea so can't help with dialer problem.
Sent from my LG-F500S using XDA Free mobile app
The weather app is in English but it will not find my place by GPS unless I chose manually
Power_Getter said:
The weather app is in English but it will not find my place by GPS unless I chose manually
Click to expand...
Click to collapse
Hi
Can you reply my PM? Thanks
Hmmm maybe try allow mock location under dev options? Just an idea
Will do
UPDATE !!
Ok guys here is interesting update.
since any missed call that I received in my country should appears with the country code like this: +97150*******
so I decided to try something different, I tried to dial 0097150******* and it works !!!
that's interesting, anyone can find where is the problem? Looks like somthing inside the phone will not allow any outgoing call if started with +
Good news
Good news ... Solved the outcall issue, now I can call any number.
Under the Sitting --> Call --> International access number
I did the following change ( see the pic attached)
Just sharing this info in case anyone faced slimier issue
delete
Power_Getter said:
Just received my Korean LG G4, everything worked well except one issue and I have to fix.
Making a call is annoying for example when I need to place a call I have to remove the international code for example +97150******* will give me invalid number so I have to edit each number in my contact list by removing +971 and just start with 05********
One more thing my G4 always act like I'm in korea, weather app and the widget on the look screen there are 2 o'clock my country (UAE) and Korea.
Any solution for these problems?
Click to expand...
Click to collapse
Guild for remove dual clock in lockscreen. My english not good, hope you understand i write
1. go to Play Market, find Dual Clock Remover app ( not need root ). same the picture
2. when it installed, open app and choose " Unckeck Both ", same the picture
3. next screen you need untick in first row "Use roaming dual-clock " same the picture
Tested from my LG F500L
midouban87,
Thanks a lot my friend, it worked well
I'm very glad, this thread become very helpful for the Korean G4 owners
midouban87 said:
Guild for remove dual clock in lockscreen. My english not good, hope you understand i write
1. go to Play Market, find Dual Clock Remover app ( not need root ). same the picture
2. when it installed, open app and choose " Unckeck Both ", same the picture
3. next screen you need untick in first row "Use roaming dual-clock " same the picture
Tested from my LG F500L
Click to expand...
Click to collapse
Not done with LG G4 F500S
Can you help me. Thanks
Nice to know it works for LG F500L with just untick that button, I will add it in the notes.
Which software version do you use ?
Ivan
---------- Post added at 01:51 PM ---------- Previous post was at 01:49 PM ----------
@Power_Getter, which F500 version do you have ? And which software is it running?
I love my new Moto G4 Plus, but I find the standard Time and Weather widget to be a bit mundane. There are lots of 3rd party alternatives, but for those who may like the Accuweather app that comes with this widget, I just came across an alternative, a version of other Moto devices' Command Center, posted by Sachin Naik in the Google+ Android Wallpapers community. The link to the apk is here.
I also found a Turbo 2 version of Command Center that will work on this device. The download can be found here.
I've always liked the moto commander apps, but it doesn't seem to work on nougat. Any alternatives? Or link to the nougat version?
hawk1500 said:
I've always liked the moto commander apps, but it doesn't seem to work on nougat. Any alternatives? Or link to the nougat version?
Click to expand...
Click to collapse
Don't know. I'm not on Nougat, so you'll have to search.