WP 8 and Multitasking - Windows Phone 8 General

Hello there!
I would like to try it by myself, but unfortunately I cant. So, someone who tried the SDK, have you noticed changes in multitasking system?
Right now the only way to resume an app is using fast app switch. But I really dont like it. I rather just use the homescreen icon instead. Right now it relaunch the app.
Any changes on that? (oh please)
Thank you so much!

mikeeam said:
Hello there!
I would like to try it by myself, but unfortunately I cant. So, someone who tried the SDK, have you noticed changes in multitasking system?
Right now the only way to resume an app is using fast app switch. But I really dont like it. I rather just use the homescreen icon instead. Right now it relaunch the app.
Any changes on that? (oh please)
Thank you so much!
Click to expand...
Click to collapse
Windows Phone apps can never resume via the homescreen like iOS, due to the addition of the hardware OS back button.
To illustrate why; imagine you have an app that has start page and a settings menu. When a user goes to the settings menu, they can only go back to the start page by pressing the hardware back button (this is standard Metro design).
Now imagine a user opens the app, goes to the settings menu, then exists the app by pressing the Home button. They then do a few other tasks and then resume the app. They are now stuck in the settings menu and can't get back to the app start page; the back key will take them back to the WP8 Home screen (this is how the WP OS backstack works).
To get around this issue, Microsoft specify that starting the app from the front page always has to start a fresh instance, so the user can never get "stuck".
iOS has software back buttons on every page, so all apps can resume however you launch them. Android had the same problem with their back button (actually worse, as their backstack can be altered by the OS choosing to kill memory-intensive apps); to get around this, from ICS onwards Android apps are meant to have a software back button in the top-left, to go back within the application (hardware back key is still OS backstack).

Aphasaic2002 said:
Windows Phone apps can never resume via the homescreen like iOS, due to the addition of the hardware OS back button.
To illustrate why; imagine you have an app that has start page and a settings menu. When a user goes to the settings menu, they can only go back to the start page by pressing the hardware back button (this is standard Metro design).
Now imagine a user opens the app, goes to the settings menu, then exists the app by pressing the Home button. They then do a few other tasks and then resume the app. They are now stuck in the settings menu and can't get back to the app start page; the back key will take them back to the WP8 Home screen (this is how the WP OS backstack works).
To get around this issue, Microsoft specify that starting the app from the front page always has to start a fresh instance, so the user can never get "stuck".
iOS has software back buttons on every page, so all apps can resume however you launch them. Android had the same problem with their back button (actually worse, as their backstack can be altered by the OS choosing to kill memory-intensive apps); to get around this, from ICS onwards Android apps are meant to have a software back button in the top-left, to go back within the application (hardware back key is still OS backstack).
Click to expand...
Click to collapse
But it sucks so bad! They should review this. I hate to use the back button, and I hate to not resume the app. Using a common app, for example, WhatsApp. I was in a chat with someone. Then I hit Windows button and Im at start screen. Then I receive a message from the same person I just left the chat. What I do? I can open from the toast, can open from fast app switch (back button), or open from start screen icon.
If I open from toast, that will depend on what the app was meant to be. In WhatsApp it would take me to the chat, because of deep toast notification. But, right now, it needs to reload the whole app to open just the chat.
If I open from fast switch, it will resume the app right away. Nice. But in any other platform the message would be there waiting for you. Right now, in WP, it takes a lot to refresh the chat. You keep like 10 seconds staring at the screen waiting it. Its even faster to just reopen the whole app.
And if I open from start screen, its almost the same effect of toast, but it dont take me to the chat, but to the start screen of the app.
The point is, the fast switch is not helping that much. In fact, it would makes sense to change the fast switch to open when holding the Windows button instead of back button, and whenever an app is open, opening it from start screen icon just resume it. Actually, a lot of people doesnt even know, or even knowing, doesnt even use fast switch. Im not a common smartphone user, and even so I dont use fast switch.
For me, its the worse problem of platform. And I dont care about CE or NT if it works, but I care about it working at all. Doesnt make sense to put a whole computer in my pocket if it cant resume a single app.

i don't like the idea either to relaunch the app when you just have put it in background. then again, i also hope we will be able to close apps from the fast-appswitch-screen. and add an option to the gesture lovers out there: pinch out on homescreen to launch multitasking. or swipe from edge like w8. or anything like that. it would add to UI experience and would eliminate that 2-seconds-pause when pressing and holding down the backbutton.

Was the question not about Windows Phone 8?
Windows Phone 8 is supposed to behave differently, since true background processing is supposed to be enabled. I haven't played with the SDK yet, but I suspect that for non recompiled apps, things will behave as they do on Mango. But, I think that things changed to target WinRT and set to be able to run in the background will be able to resume right where you left off.
It wouldn't make sense for an app that is running and processing things in the background to restart when the tile is pressed.
It's been a while since I used Mango or wrote any apps for it. But, when an app is suspended, the dev has a specified amount of time to save the state.
That way when it is relaunched, the app can resume where it left off, by processing the saved state on launch. I thought with fast resume the app stayed in memory, but that was done through a registry hack and not directly made available by any carrier.
After doing some reading, the multi tasking enhancements might only add gps and voip to the currently supported background processing.

JVH3 said:
But it sucks so bad! They should review this. I hate to use the back button, and I hate to not resume the app. Using a common app, for example, WhatsApp. I was in a chat with someone. Then I hit Windows button and Im at start screen. Then I receive a message from the same person I just left the chat. What I do? I can open from the toast, can open from fast app switch (back button), or open from start screen icon.
If I open from toast, that will depend on what the app was meant to be. In WhatsApp it would take me to the chat, because of deep toast notification. But, right now, it needs to reload the whole app to open just the chat.
Click to expand...
Click to collapse
Tapping the toast to re-open the chat is the correct behavior here. I guess it's just bad coding that makes it take so long to resume; it should just be able to go straight to the conversation and skip all the "loading contacts...connecting" stuff.
JVH3 said:
Was the question not about Windows Phone 8?
Windows Phone 8 is supposed to behave differently, since true background processing is supposed to be enabled. I haven't played with the SDK yet, but I suspect that for non recompiled apps, things will behave as they do on Mango.
But, I think that things changed to target WinRT and set to be able to run in the background will be able to resume right where you left off.
Click to expand...
Click to collapse
Are you sure you're not thinking of Windows 8? For Windows Phone 8, no changes have been announced regarding multitasking or background tasks, *except* that a few select APIs (VOIP, location) will be able to run in the background, similar to iOS (not true backgrounding like Android)
Also we are talking about resuming, not background processing. In the WP8 SDK emulator, apps built into the OS don't resume; Therefore it's safe to assume 3rd party apps are not going to either.
JVH3 said:
It wouldn't make sense for an app that is running and processing things in the background to restart when the tile is pressed.
It's been a while since I used Mango or wrote any apps for it. But, when an app is suspended, the dev has a specified amount of time to save the state.
That way when it is relaunched, the app can resume where it left off, by processing the saved state on launch. I thought with fast resume the app stayed in memory, but that was done through a registry hack and not directly made available by any carrier.
Click to expand...
Click to collapse
When an app is closed the developer is meant to save the state, so that it can be reloaded if it is quick-resumed. However, once the app leaves the backstack (the 5 apps that appear in when you hold the back-button), this state is supposed to be discarded.
This is not a technical issue; it would be trivial for app developers to save the state and make their apps resume. The issue is that Microsoft's publishing guidelines (to get your app published on the WP app store) specifically says that an app launched from the home screen must launch showing it's introduction page, i.e. it can't resume. It could save some state, so a web-browser could still have all the recent tabs open, but it couldn't show the last one seen (ironically IE9 does resume it's state - guess Microsoft are allowed to break their own guidelines).
I agree it doesn't make sense to restart an app that is performing some background task; but then how to you avoid users getting stuck within a certain page, as in my example above? If WP8 includes a hardware back button, they can't change this policy.

Well, thats a shame. I hate reloading the app everytime I need it. Its so meaningless. I dont need VOIP, I dont need Skype running all the time. But I do need apps to be fast.

It really depends on how exactly the developers save their app state when the app is sent to background/tombstoned.
I, for one, use a text file to save data ( a lot of data) and proceed to loading the app as usual, and the moment the user presses a button, a pop up asks him weather he wants to restore or start anew.
I'm guessing that not every app will do this, as it is up to the developer to implement this.

Related

Switching between apps? Multitasking?

So with all this talk about Hero's ability to multitask I just wanted to ask how people leverage this ability.
Unless I'm missing something if I want to go from a browser session to my playing music app I have to go via the home screen. Similarly if I want to switch from say Google Maps to Google Mail then I need to go via the home screen and the app's icon.
This is no different to how the iPhone handles things except that the apps on the Hero continue to run in the background.
Am I missing some technique for 'TAB'ing' between running apps? Palm's Pre has got the 'cards' and the floaty shortcut menu thing.
To be honest if there is no ability to switch DIRECTLY to a running app from another running app then the whole multitasking thing is a bit pointless (Widgets not withstanding)
I'm new to Android so I'm hoping that I'm just missing something.
I have a G1 but if you hold down the home key you can switch between running apps and I imagine that works as well on the hero.
Also, you can use an app such as "task switcher" or "bar control" found in the android market to switch between applications without having to go through the home screen with a few more options than the home key thing.
HTH
Holding down the home key only displays 6 recently opened apps not ones that are running. Thats what it does on the Hero anyway. It also brings you back to the home screen and out of whatever app you were in when you held it down.
It seems that the Palm Pre is currently the only handset that truly enables multitasking app switching.
I'm somewhat disappointed in the Hero in this regard.
To be fair, the whole concept of multitasking doesn't really address in what way you would be switching from app to app. The major thing is the ability of the phone to keep two, three or ten apps running at the same time, doing their stuff in the background. This is what the iPhone doesn't have and Android does. This is the "competitive edge".
If you install "Advanced Task Manager", it will put itself in the notification drawer for two-click activation. I think I'd enable it, if there was a setting to make all apps behave this way. A sort of "show all running apps in the notification drawer" feature (or the apps I select).
Notice you can switch to all running apps from Advanced Task Manager, but that makes for a total of four clicks, moving from one app to another. It's a bit cumbersome.
Pressing and holding Home should IMHO bring up the recent apps list to allow switching WITHOUT returning Home first.
Maybe a bug or a bad decision UI wise.
@joemax
That would sort me out. Having it behave like that would be really useful.
Commantalb looked promising in the Market - very nice effect when bringing apps list up too
BUT, it cannot be envoked unless you press and hold HOME and then select Commantalb.
If it were a background process that changed the default HOME button behaviour - to launch itself, it would be very cool.
ShiroEd said:
To be honest if there is no ability to switch DIRECTLY to a running app from another running app then the whole multitasking thing is a bit pointless (Widgets not withstanding)
Click to expand...
Click to collapse
Ok -here's a real world example.
I use MyTracks when out walking. Since the Hero can multitask, I can start MyTracks recording, then as I'm walking do anything else with my phone that I want and not be artificially limited to a select few apps. This is something that I do regularly.
From my perspective, the lack of a true task switcher is largely immaterial to me, but the fact that the apps are still running, even when not active, is.
Regards,
Dave
joemax said:
Pressing and holding Home should IMHO bring up the recent apps list to allow switching WITHOUT returning Home first.
Maybe a bug or a bad decision UI wise.
Click to expand...
Click to collapse
I can happily report that this is exactly what it does with the new ROM. Yipee!!
It does indeed
Posted as such on another thread.
The new firmware is very good IMHO.
ShiroEd said:
I can happily report that this is exactly what it does with the new ROM. Yipee!!
Click to expand...
Click to collapse
GOD ALLMIGHTY IN THE HEAVEN!!! THERE IS STILL A GOD!!!
I didn't know this untill now... and it god damn works... WEEEEEEEEEEEEEE
We love you HTC...
Oh damn... a double post... :-(

All messages> Back switches apps instead

I noticed a bug that allows you to switch to running apps that were left behind with the home button.
Prerequisites: HTC Messages widget on one of the main screens.
Steps to reproduce:
1. Open an application (like 'people') and exit out with the home button, not the back button.
2. Repeat step one if you want to add other apps.
3. Go to the HTC messages widget and tap it to open a message.
4. Select menu option "All messages".
5. Press the 'back' button. This will switch to another app instead of close the messages.
6. Repeat step 5 to close the app and move to the next one.
Further notes:
Some apps will continue to show up even if you press 'back' on them to exit out.
For example, "People", "System settings" and browser never closes. Camera app does close, but you have to leave it by pressing 'home'.
Works on generic 1.5.
android dosent close apps untill needed lol just hold the home button to open any program you have run recently lol
mancsoulja said:
android dosent close apps untill needed lol just hold the home button to open any program you have run recently lol
Click to expand...
Click to collapse
I didn't know that - it is not mentioned in the manual. Thanks for that useful tip. Looks like a useful shortcut back to where you were before.
But how do you close a programme rather than let it waste memory and battery in the background?
peterc10 said:
I didn't know that - it is not mentioned in the manual. Thanks for that useful tip. Looks like a useful shortcut back to where you were before.
But how do you close a programme rather than let it waste memory and battery in the background?
Click to expand...
Click to collapse
If android needs ram it will close apps as needed but you can always download a task manager from the marketplace, there are some good free ones, i suggest advanced task manager its what i use
It would be good to be able to actually get them to exit properly.
Especially so when you have 4 or 5 "All messages" apps that won't go.
The only use this bug has is to take you to apps that are actually running as opposed to your history.
It also takes you to screens that a task switcher can't do for you, like the last screen you see from your last phone call and the call history.
frankv100 said:
The only use this bug has is to take you to apps that are actually running as opposed to your history.
Click to expand...
Click to collapse
I don't see this as being a bug. The ability to be able to short cut to the 6 (I notice it is limited to 6) previously used apps by a long press on the home button is obviously something the designers have deliberately included. And to me it is a useful additional feature (now I have found it!).
It seems to be history rather than running apps you are looking at - I closed several of my running apps using Astro and yet they still subsequently appeared in the list.

How to get Android to always open root Activity

Ok, so I have been struggling for a couple days with this, and I hope someone can help me.
I want Android to always run my splash screen activity, because I load a bunch of data from web services that I need throughout the rest of the app. This works fine with the flag android:clearTaskOnLaunch="true" set when you launch the app from the home screen.
Where it does not work so well is the long press of the home button and then selecting the app. In that case it starts the app in whatever random spot the user left it last. The problem is that if the app has been killed due to memory, it still shows in that recent apps list and when a user restarts the activity from the long press, all my data is gone so the app force closes.
So, my ugly workaround is to remove the app from the recently run list. I would much rather it showed up there but that it started my app the same way as if it was clicked on the home screen.
Anybody know how to do this? The ebay app pretty much does this, so I know it can be done.
-frank
Instead of reading your data in OnCreate, you could do it in OnResume. See the flow chart here:
http://developer.android.com/reference/android/app/Activity.html
as you can see, OnResume is always called whether the app is created initially, resumed from pause, or reloaded.
kaediil said:
Ok, so I have been struggling for a couple days with this, and I hope someone can help me.
I want Android to always run my splash screen activity, because I load a bunch of data from web services that I need throughout the rest of the app. This works fine with the flag android:clearTaskOnLaunch="true" set when you launch the app from the home screen.
Where it does not work so well is the long press of the home button and then selecting the app. In that case it starts the app in whatever random spot the user left it last. The problem is that if the app has been killed due to memory, it still shows in that recent apps list and when a user restarts the activity from the long press, all my data is gone so the app force closes.
So, my ugly workaround is to remove the app from the recently run list. I would much rather it showed up there but that it started my app the same way as if it was clicked on the home screen.
Anybody know how to do this? The ebay app pretty much does this, so I know it can be done.
-frank
Click to expand...
Click to collapse
In the onResume for the activity that is crashing, you could test your data to see if it's still there, if it's null you can run the code to repopulate it again.

BACK-Button to kill a task *searching*

Hi there,
wondering if there is a way to get the back-button finishing the app.
When i'm at contacts or writing an sms or surfing, i want to go back to desktop as fast as possible...but when i'm at contact/details, i have to press the back button 5-6 times to go back trough all the previous screen.
Is there a way/hack/app telling the back-button (have to be a hardware button) to end the tasks completly when holding it, for example?
THX THX
Press the home button? That will take you back to the desktop.
If you need to you can then use task manager to end the task.
Would be nice to see a hack/fix to add the back button to kill functionality though
IakobosJ said:
Press the home button? That will take you back to the desktop.
If you need to you can then use task manager to end the task.
Would be nice to see a hack/fix to add the back button to kill functionality though
Click to expand...
Click to collapse
I miss this from my oxygen rom'd desire
Pkplonker said:
I miss this from my oxygen rom'd desire
Click to expand...
Click to collapse
It's already in in MIUI and most probably will be also in CM7.
well the back button does kill apps.
if you start, say, the browser and press the home button, then enter task manager, the browser will still run. if you start the browser and press the back button and open the task manager, it will show that the browser is not running anymore (actually, the browser was a bad example, since after a little bit of browsing you'd have to push the back button quite a lot since its primary function is to go back). the same goes for many more apps, whatsapp, facebook, twitter, angry birds...
Pkplonker said:
I miss this from my oxygen rom'd desire
Click to expand...
Click to collapse
me too. adamG has apparently got a SGS2 though
Thinking about it, I would also like this functionality although it isn't so urgent for me. If more people show interest maybe I'll attempt it as my first android app For such a simple app my opinion is that it should be free and not packed with admob spam, but if another dev wants to attempt it that's their choice I guess.
My thoughts:
It should be quick to develop a simple app providing this functionality. Just have it bind to an event which fires when the back button is pressed long, and have it kill the app whichever is first in the foreground window Z-order (I'm fairly new to the Android API, so I use Win32 API terminology here for example only). The only complexity may be to make the event bound globally (in all apps), as opposed to only bound in the app itself - hopefully that doesn't require root! I guess it should be a background service which runs on boot, and perhaps a very simple gui app to control that service (in fact would there be anything to configure at all? What do you think?).
sl9 said:
Thinking about it, I would also like this functionality although it isn't so urgent for me. If more people show interest maybe I'll attempt it as my first android app For such a simple app my opinion is that it should be free and not packed with admob spam, but if another dev wants to attempt it that's their choice I guess.
My thoughts:
It should be quick to develop a simple app providing this functionality. Just have it bind to an event which fires when the back button is pressed long, and have it kill the app whichever is first in the foreground window Z-order (I'm fairly new to the Android API, so I use Win32 API terminology here for example only). The only complexity may be to make the event bound globally (in all apps), as opposed to only bound in the app itself - hopefully that doesn't require root! I guess it should be a background service which runs on boot, and perhaps a very simple gui app to control that service (in fact would there be anything to configure at all? What do you think?).
Click to expand...
Click to collapse
It would need to be in the framework of the rom, I think
Chef_Tony said:
well the back button does kill apps.
if you start, say, the browser and press the home button, then enter task manager, the browser will still run. if you start the browser and press the back button and open the task manager, it will show that the browser is not running anymore (actually, the browser was a bad example, since after a little bit of browsing you'd have to push the back button quite a lot since its primary function is to go back). the same goes for many more apps, whatsapp, facebook, twitter, angry birds...
Click to expand...
Click to collapse
Yeah it does, but you have to press and press and press...would be cool, if you can "hold down" the button for a sec and it will end the task.
Example...when i'm at handsentSMS > SMS > keyboard open...
Pressing BACK > close keyboard
Pressing BACK > closing SMS windows
Pressing BACK > closing handsentSMS
3 times pressing this button after every SMS suxx...sorry
Yeah i can press the HomeButton, but then its in my mind, that the app is running in background...isnt that bad at android-OS-structure, but its a bad feeling to me...
yes that's true. i was reading over your original post again and the first time through i must have overread the part where you named sms and the browser as examples. you are right, in that case, it does not work very well. an alternative way is to hold the home button, then press task manager and kill the app instantly. but that takes even longer. i guess your best option is to actually let it run in the background, if you want to get out of it fast.
pulser_g2 said:
It would need to be in the framework of the rom, I think
Click to expand...
Click to collapse
I suspected this may be the case, really hope it isn't but I understand the Android security model needs to enforce a certain level of isolation for each app in the VM I'll do some further reading of the documentation to find out for sure, since a simple non-root APK providing this functionality for users would be very welcome.
I'm too used to other less-secure API's (Win32) in which any app could basically do whatever it wanted to other apps and the OS; I guess thats why virus authors love Windows so much
yeah just for anyone not totally in the know, there is a difference in android between pressing the BACK button and HOME button to leave an app. using the back button to leave an app and go back to the home screen basically "kills" the app. it puts it in a state where it can readily be killed by the OS in an instant.
when just pressing HOME to leave an app, the app is technically backgrounded. the OS will keep it around longer or in a different fashion.
so backing out of apps with the back button is always the way to "exit" any app.

what Windows Phones OS is missing

1- Windows Phone 8 Lackings
a) Items that Must be in a Mobile OS which Windows Phone Missing
• Call duration information is not exist in OS (I still can't believe)
• There is No Notification center. If you miss it to see. You miss it.
• Folderizing those bunch list of application list cannot be scrolled faster. And I believe it should have been foldered.
• Photos doesn’t have custom folders. It supposed to be added for customization and also a security key would be good.
• There is no Sound profiles center you need to close vibrating in a long way from settings/sounds.
• Google apps are missing including YouTube at all. No Google apps is something really to be sad.
• Percentage for battery level is not exist natively.
• GPS toggle does not exist so location finding is not working in airplane mod. GPS doesn't work even if you downloaded offline maps and turned wifi on. You need to have cellular signal to make GPS on. So definitely GPS toggle must be build.
• Location center should be letting user to choose which application can use which not.. It is just one option to be on n off..
And somehow periodically I see location icon on top even those map and location background are fully limited, and I can't see what application is currently using my location. And this makes me feel phone is going against my privacy.
• When theme color is changed, OS based native tiles is changing color instantly but the Tiles that have been created by applications, doesn't change color unless being run once. And you need to open all those apps to update new theme color.
• Skype is fully buggy that doesn't let video chat. Neither doesn't work in background fully online. Cannot call online iphone users etc.. It may not be considered as developed application.
• Whatsapp is buggy. Developer said that it’s because of windows platform and porting issues. If you lock screen in whatsapp there won't be any new notification, you need to check it manual. This is so annoying. So after you write you need to leave application. And lock phone to receive notifications. Also It can't send any picture from screen shots. Additional when you return back to application it always needs to be loaded and makes you waited 3 seconds every time which is a huge time that being wasted.
• Cannot close applications. Windows Phone OS cannot close any application. You need to hammer back button 15 times to resume beginning. But somehow also it’s not enough in some cases. There are some apps that asks to be exit and needs confirmations. Some apps directly being closed , some apps goes back inside its navigation like IE n Flickr until start page and then being closed. So Windows phone does not have ability to close app in one standard way.
• In the messaging and, email There is no “Select all option” ... u need to select one by one each mail or message to erase
• I don't know outside my country but in computer when I open find my phone service that never works. It doesn't work at all. Even it is turned on settings. Nokia asked me to ask it Microsoft. And Microsoft didn't reply me. I think for some countries location services doesn't work. In Turkey it does not work.
• Phone alarm should have been working even phone is turned off.
• Text writing should have undo with shaking, sometimes when using shortcut words over keyboard if you press wrong word u cannot go back and fix it so need to re write all. Shake left should make undo which is not exist currently..
• Phone storage does not show you size of application music and pictures. Just there is one cumulative bar which is so useless to show overall instead of separating each kind.
• Where I spend the battery? U won’t know where. This should be adapted because there are lots of people discussing it in forums that battery levels are normal if not for what reason. And since it is new OS and we all end users are behaved like testers, we need to make, things certain.
• Wi-Fi saved passwords or rest of other password doesn't being seen again even there is a thick that says “show password”. There is this option but completely in functional and doesn’t let you to see passwords.
• 3rd party music or video downloader apps makes its work. But those downloaded music’s are not being able to reach from native music applications. It just stays in the 3rd party applications library and can be reach from it. Native windows music player should have been reach all mp3 which is downloaded.
• Rotation option doesn't exist. It is mandatory to be rotated if u hold it horizontally. And it makes phone so un stable in bed when writing. That is so annoying that phone doesn't has this option. It is mandatory to use it vertical.
• When typing text in a text box, there is no standard to how to hide keyboard. Every app works different. You cannot say a certain way to hide keyboard, and scroll to see what has been written. Also scrolling doesn't have a standard way either. Also, Text assisting, words are appearing in some apps, but not appearing in some. It doesn’t have standard too. There should have been one way for everything!
• Physical search button should be configured to run a search application which can be change into Google yahoo etc.. Also search button same time should have been looking email contents and apps
• Random reboots. I can't believe that happens almost every 3 days once and it has been reported more often, with some series..
b) Optional Additions
• There is no Instagram
• Multitasking gestures
• Unable to find enough local apps for turkey,
• Dropbox would be nice addition
• Lock button and keyboard click sound is bad for me. Should be personalized
• Even it has graphics card, which game, exist to use it. We almost don't have a nice 3d game, to be impressed with graphics.
• There is no live tile that shows clock, and date same as HTC does. Also it would be good if native clock app live tile enhanced including selected city times rotating in tile.
• Since start menu is customizable with a theme color , all applications must have been force a icon color weather is native or theme color and user should pick it up how to be.
• Screen brightness is just tree Level doesn't let to make a fine setting. And long way to reach from settings,menu.
• People hub tile should be have an option to show people profile pics or not. Sometimes in formal situations, on the phone stupid profile pics makes me shame.. Also favorite persons should,be included. I don't,want to see some,of ppl there,and I don't,get in,what logic ppl hub selects those ppl
• There is Turkish language support,
There is Turkish keyboard
There is Turkish keyboard assistant
But there, is no voice command for, Turkish language. Downloadable content for languages is just a few. This technology is not completed for many.
Not only voice command but also
Bing search doesn't exist on my native language.
m_carleone82 said:
1- Windows Phone 8 Lackings
a) Items that Must be in a Mobile OS which Windows Phone Missing
• Call duration information is not exist in OS (I still can't believe)
• There is No Notification center. If you miss it to see. You miss it.
• Folderizing those bunch list of application list cannot be scrolled faster. And I believe it should have been foldered.
• Photos doesn’t have custom folders. It supposed to be added for customization and also a security key would be good.
• There is no Sound profiles center you need to close vibrating in a long way from settings/sounds.
• Google apps are missing including YouTube at all. No Google apps is something really to be sad.
• Percentage for battery level is not exist natively.
• GPS toggle does not exist so location finding is not working in airplane mod. GPS doesn't work even if you downloaded offline maps and turned wifi on. You need to have cellular signal to make GPS on. So definitely GPS toggle must be build.
• Location center should be letting user to choose which application can use which not.. It is just one option to be on n off..
And somehow periodically I see location icon on top even those map and location background are fully limited, and I can't see what application is currently using my location. And this makes me feel phone is going against my privacy.
• When theme color is changed, OS based native tiles is changing color instantly but the Tiles that have been created by applications, doesn't change color unless being run once. And you need to open all those apps to update new theme color.
• Skype is fully buggy that doesn't let video chat. Neither doesn't work in background fully online. Cannot call online iphone users etc.. It may not be considered as developed application.
• Whatsapp is buggy. Developer said that it’s because of windows platform and porting issues. If you lock screen in whatsapp there won't be any new notification, you need to check it manual. This is so annoying. So after you write you need to leave application. And lock phone to receive notifications. Also It can't send any picture from screen shots. Additional when you return back to application it always needs to be loaded and makes you waited 3 seconds every time which is a huge time that being wasted.
• Cannot close applications. Windows Phone OS cannot close any application. You need to hammer back button 15 times to resume beginning. But somehow also it’s not enough in some cases. There are some apps that asks to be exit and needs confirmations. Some apps directly being closed , some apps goes back inside its navigation like IE n Flickr until start page and then being closed. So Windows phone does not have ability to close app in one standard way.
• In the messaging and, email There is no “Select all option” ... u need to select one by one each mail or message to erase
• I don't know outside my country but in computer when I open find my phone service that never works. It doesn't work at all. Even it is turned on settings. Nokia asked me to ask it Microsoft. And Microsoft didn't reply me. I think for some countries location services doesn't work. In Turkey it does not work.
• Phone alarm should have been working even phone is turned off.
• Text writing should have undo with shaking, sometimes when using shortcut words over keyboard if you press wrong word u cannot go back and fix it so need to re write all. Shake left should make undo which is not exist currently..
• Phone storage does not show you size of application music and pictures. Just there is one cumulative bar which is so useless to show overall instead of separating each kind.
• Where I spend the battery? U won’t know where. This should be adapted because there are lots of people discussing it in forums that battery levels are normal if not for what reason. And since it is new OS and we all end users are behaved like testers, we need to make, things certain.
• Wi-Fi saved passwords or rest of other password doesn't being seen again even there is a thick that says “show password”. There is this option but completely in functional and doesn’t let you to see passwords.
• 3rd party music or video downloader apps makes its work. But those downloaded music’s are not being able to reach from native music applications. It just stays in the 3rd party applications library and can be reach from it. Native windows music player should have been reach all mp3 which is downloaded.
• Rotation option doesn't exist. It is mandatory to be rotated if u hold it horizontally. And it makes phone so un stable in bed when writing. That is so annoying that phone doesn't has this option. It is mandatory to use it vertical.
• When typing text in a text box, there is no standard to how to hide keyboard. Every app works different. You cannot say a certain way to hide keyboard, and scroll to see what has been written. Also scrolling doesn't have a standard way either. Also, Text assisting, words are appearing in some apps, but not appearing in some. It doesn’t have standard too. There should have been one way for everything!
• Physical search button should be configured to run a search application which can be change into Google yahoo etc.. Also search button same time should have been looking email contents and apps
• Random reboots. I can't believe that happens almost every 3 days once and it has been reported more often, with some series..
b) Optional Additions
• There is no Instagram
• Multitasking gestures
• Unable to find enough local apps for turkey,
• Dropbox would be nice addition
• Lock button and keyboard click sound is bad for me. Should be personalized
• Even it has graphics card, which game, exist to use it. We almost don't have a nice 3d game, to be impressed with graphics.
• There is no live tile that shows clock, and date same as HTC does. Also it would be good if native clock app live tile enhanced including selected city times rotating in tile.
• Since start menu is customizable with a theme color , all applications must have been force a icon color weather is native or theme color and user should pick it up how to be.
• Screen brightness is just tree Level doesn't let to make a fine setting. And long way to reach from settings,menu.
• People hub tile should be have an option to show people profile pics or not. Sometimes in formal situations, on the phone stupid profile pics makes me shame.. Also favorite persons should,be included. I don't,want to see some,of ppl there,and I don't,get in,what logic ppl hub selects those ppl
• There is Turkish language support,
There is Turkish keyboard
There is Turkish keyboard assistant
But there, is no voice command for, Turkish language. Downloadable content for languages is just a few. This technology is not completed for many.
Not only voice command but also
Bing search doesn't exist on my native language.
Click to expand...
Click to collapse
Wow... very stright forward. I hope Microsoft will read your suggestion and build an update as soon as possible
My two cents:
Very detailed, however, have to reply to some of these.
1- Windows Phone 8 Lackings
a) Items that Must be in a Mobile OS which Windows Phone Missing
• Call duration information is not exist in OS (I still can't believe) - I always wondered what this was for. It never mattered to me how long I spoe with someone, I am not paying by the minute. The fact that its not here is a bonus for me.
• There is No Notification center. If you miss it to see. You miss it. - Again, whats the big deal?! It was nice on my android phone, but I really dont miss it. The live tiles take care of all my notification issues.
• Folderizing those bunch list of application list cannot be scrolled faster. And I believe it should have been foldered. - Isn't it?! Just press the letter, and you get a list of the letter, tap it and it takes you there. Very fast in my book!
• Photos doesn’t have custom folders. It supposed to be added for customization and also a security key would be good. - I use skydrive for my photos, and its easy to set up custom folders. Security key should be your phones security password.
• There is no Sound profiles center you need to close vibrating in a long way from settings/sounds. - No, if you set your phones settings once to include vibration, just tap your volume once, the toast notificaiton will pop up, press where it says "vibrate & ring", it will switch to "vibrate". Thats what I do. One volume rock and one tap, I am silent.
• Google apps are missing including YouTube at all. No Google apps is something really to be sad. - Again, prefrence. Don't really use google apps that much, so not missing them.
• Percentage for battery level is not exist natively. - yea, thats one thing I wouldn't mind seeing.
• GPS toggle does not exist so location finding is not working in airplane mod. GPS doesn't work even if you downloaded offline maps and turned wifi on. You need to have cellular signal to make GPS on. So definitely GPS toggle must be build. - Haven't tried using GPS when in airplane mode. NEver switch my phone to Airplane mode.
• Location center should be letting user to choose which application can use which not.. It is just one option to be on n off..
And somehow periodically I see location icon on top even those map and location background are fully limited, and I can't see what application is currently using my location. And this makes me feel phone is going against my privacy. - You shouldb e able to set that when you initially start or download the app, it asks if they can use your location. Otherwise, I don't have any problem with it, got nothing to hide, so you can see where I go anytime!
• When theme color is changed, OS based native tiles is changing color instantly but the Tiles that have been created by applications, doesn't change color unless being run once. And you need to open all those apps to update new theme color. - Yea, I guess, don't really notice that.
• Skype is fully buggy that doesn't let video chat. Neither doesn't work in background fully online. Cannot call online iphone users etc.. It may not be considered as developed application. - Haven't used Skype yet, maybe one day.
• Whatsapp is buggy. Developer said that it’s because of windows platform and porting issues. If you lock screen in whatsapp there won't be any new notification, you need to check it manual. This is so annoying. So after you write you need to leave application. And lock phone to receive notifications. Also It can't send any picture from screen shots. Additional when you return back to application it always needs to be loaded and makes you waited 3 seconds every time which is a huge time that being wasted. -Dont have that app.
• Cannot close applications. Windows Phone OS cannot close any application. You need to hammer back button 15 times to resume beginning. But somehow also it’s not enough in some cases. There are some apps that asks to be exit and needs confirmations. Some apps directly being closed , some apps goes back inside its navigation like IE n Flickr until start page and then being closed. So Windows phone does not have ability to close app in one standard way. - Yea, that could be alot easier to handle.
• In the messaging and, email There is no “Select all option” ... u need to select one by one each mail or message to erase -Again, don't really notice that. I don't let my emails pile up to the point I need to select all to get rid of them. Once I read, they are filed or deleted. No need to leave them there taking up space.
• I don't know outside my country but in computer when I open find my phone service that never works. It doesn't work at all. Even it is turned on settings. Nokia asked me to ask it Microsoft. And Microsoft didn't reply me. I think for some countries location services doesn't work. In Turkey it does not work.-Not using Nokia, so not sure about this one.
• Phone alarm should have been working even phone is turned off. - I don't think this is a possibility with any system, phone, or OS. Once the phone is off, its off. Now, if your turning your phone to sleep, or hibernate, then it should still work. Otherwise, powered off is powered off. Thats like wanting your car off, but as soon as you get in and hit the gas it magically comes to life and starts driving.
• Text writing should have undo with shaking, sometimes when using shortcut words over keyboard if you press wrong word u cannot go back and fix it so need to re write all. Shake left should make undo which is not exist currently.. - Uhmm, I hate having to shake my phone to make it do anything. If I have to shake it, then something is wrong with it. Just my opinion.
• Phone storage does not show you size of application music and pictures. Just there is one cumulative bar which is so useless to show overall instead of separating each kind. - Yea, that would be nice, but I don't miss it.
• Where I spend the battery? U won’t know where. This should be adapted because there are lots of people discussing it in forums that battery levels are normal if not for what reason. And since it is new OS and we all end users are behaved like testers, we need to make, things certain. - Again, knowing what is sucking up your battery is a nice touch, and although I thought it was usefull when I had an android, I don't miss it. My 8X doesnt suck up enough battery power to be a concern.
• Wi-Fi saved passwords or rest of other password doesn't being seen again even there is a thick that says “show password”. There is this option but completely in functional and doesn’t let you to see passwords. - That would be nice!
• 3rd party music or video downloader apps makes its work. But those downloaded music’s are not being able to reach from native music applications. It just stays in the 3rd party applications library and can be reach from it. Native windows music player should have been reach all mp3 which is downloaded.- I am able to watch, listen to, whatever with all my local downloaded music and movies. No need for a 3rd party app.
• Rotation option doesn't exist. It is mandatory to be rotated if u hold it horizontally. And it makes phone so un stable in bed when writing. That is so annoying that phone doesn't has this option. It is mandatory to use it vertical. - This would be a nice touch, but not one I feel is a mandatory missing item. I can live without it.
• When typing text in a text box, there is no standard to how to hide keyboard. Every app works different. You cannot say a certain way to hide keyboard, and scroll to see what has been written. Also scrolling doesn't have a standard way either. Also, Text assisting, words are appearing in some apps, but not appearing in some. It doesn’t have standard too. There should have been one way for everything! - You would have to talk to the app creater, thats not something controled by Windows. And I find no matter what I am doing, hitting the back button once, away goes keyboard. Every app lets me do that.
• Physical search button should be configured to run a search application which can be change into Google yahoo etc.. Also search button same time should have been looking email contents and apps - Yes, local search would be nice, not just web
• Random reboots. I can't believe that happens almost every 3 days once and it has been reported more often, with some series.. - I only rebooted the day I purchased it, otherwise, no issues there!
b) Optional Additions
• There is no Instagram - Dont use it
• Multitasking gestures - Good lord, don't need it! Simple is the way!
• Unable to find enough local apps for turkey, - Sorry
• Dropbox would be nice addition - Again, don't use it
• Lock button and keyboard click sound is bad for me. Should be personalized - Yea, that would be nice
• Even it has graphics card, which game, exist to use it. We almost don't have a nice 3d game, to be impressed with graphics. - Uhmm, don't know about this one
• There is no live tile that shows clock, and date same as HTC does. Also it would be good if native clock app live tile enhanced including selected city times rotating in tile. - Thats why I like HTC!
• Since start menu is customizable with a theme color , all applications must have been force a icon color weather is native or theme color and user should pick it up how to be. - Again, talk to the app creator, not windows.
• Screen brightness is just tree Level doesn't let to make a fine setting. And long way to reach from settings,menu. - Yea, thats true!
• People hub tile should be have an option to show people profile pics or not. Sometimes in formal situations, on the phone stupid profile pics makes me shame.. Also favorite persons should,be included. I don't,want to see some,of ppl there,and I don't,get in,what logic ppl hub selects those ppl - Unfortunatly, all my pics are decent and safe for work
• There is Turkish language support,
There is Turkish keyboard
There is Turkish keyboard assistant
But there, is no voice command for, Turkish language. Downloadable content for languages is just a few. This technology is not completed for many.
Not only voice command but also
Bing search doesn't exist on my native language.
So thats my two cents!
If the keyboard is displayed simply press the back Button and it will be hidden. Works in any App.
As for the Live Tiles changing Color automatically with changes of the theme color. It is possible to be done with transparent Images but due to the problematic nature of saving those dynamically in WP7 most Devs render an Image with the current Background Color and Display that on the tile. If you want that bevhavior to change contact the developer.
The Alarm doesn't work when the device is turned off on Android or iOS as well. Symbian was the only notable exception of a Smartphone OS that did Support it. As for a wrong auto-completed word: simply tap the word and select your original Input or another Suggestion. Works for me without Problems.
If you enter Settings and look at phone Memory and then tap onto the bar that Displays how much free space you currently have it opens up a detailed view on what is taking how much Memory. At least it does on my Lumia 920.
As for the Button "Show Wifi Password" - it works similarily to the Show Password Buttons in Windows 8. They exist to allow you to have a look at the Password that you just entered/are just entering to check it for typing errors. It does work then. After you saved the Password you won't be able to retrieve it in this way for security reasons. The Buttons are not broken but work as designed.
I won't answer all the other Points. I agree with some but disagree with others but I wanted to provide some help and some context on what can be done and why some things behave the way they do.
jerrya said:
a) Items that Must be in a Mobile OS which Windows Phone Missing
• Call duration information is not exist in OS (I still can't believe) - I always wondered what this was for. It never mattered to me how long I spoe with someone, I am not paying by the minute. The fact that its not here is a bonus for me.
Click to expand...
Click to collapse
I would like to have this option. Sometimes when I'm on a business call I need to know how long I was on the call for. You can say to use a timer or check the time before and after the call but that's extra work that the phone should be able to handle. There's enough other things to juggle during a busy day! Right now I just have to go online and check my account after 24 hours to record my time.
jerrya said:
• Photos doesn’t have custom folders. It supposed to be added for customization and also a security key would be good. - I use skydrive for my photos, and its easy to set up custom folders. Security key should be your phones security password.
Click to expand...
Click to collapse
Great idea, but it would be nice to create folders on the phone instead of finding someplace else - computer, web browser, etc. All photo folder customization needs to be done outside of the app. It would be nice to set a default folder when taking pictures or saving pictures. Everything just goes into Saved Pictures or Camera Roll and then has to be organized later.
jerrya said:
• There is no Sound profiles center you need to close vibrating in a long way from settings/sounds. - No, if you set your phones settings once to include vibration, just tap your volume once, the toast notificaiton will pop up, press where it says "vibrate & ring", it will switch to "vibrate". Thats what I do. One volume rock and one tap, I am silent.
Click to expand...
Click to collapse
His point here is turning off vibrate, not turning off sound. Most of the time I like having vibrate on but during a meeting, not only do I want the phone silent, but I also want vibrate off. No way to do this unless you manually go into settings.
jerrya said:
• Location center should be letting user to choose which application can use which not.. It is just one option to be on n off..
And somehow periodically I see location icon on top even those map and location background are fully limited, and I can't see what application is currently using my location. And this makes me feel phone is going against my privacy. - You shouldb e able to set that when you initially start or download the app, it asks if they can use your location. Otherwise, I don't have any problem with it, got nothing to hide, so you can see where I go anytime!
Click to expand...
Click to collapse
Yes, the first time you use an app it asked you about location. How do you turn off (or on?) that permission after the fact, or see what applications you gave location permissions to? You have to uninstall and reinstall the app to cycle the location permission. Furthermore, reinstalling the app typically loses any data you have. This isn't quite the experience that you should expect. Windows 8 allows you to toggle permissions of Metro apps from the charms bar. No such ability exists in WP8.
jerrya said:
• Text writing should have undo with shaking, sometimes when using shortcut words over keyboard if you press wrong word u cannot go back and fix it so need to re write all. Shake left should make undo which is not exist currently.. - Uhmm, I hate having to shake my phone to make it do anything. If I have to shake it, then something is wrong with it. Just my opinion.
Click to expand...
Click to collapse
I agree on the shaking thing, but it would be nice to have some sort of undo. Occassionally I accidentally hit the wrong word or highlight a word (or sentence) and hit a letter instead of the copy. Suddenly, everything I typed is gone! Even a single-level undo would be nice in cases like this.
jerrya said:
• 3rd party music or video downloader apps makes its work. But those downloaded music’s are not being able to reach from native music applications. It just stays in the 3rd party applications library and can be reach from it. Native windows music player should have been reach all mp3 which is downloaded.- I am able to watch, listen to, whatever with all my local downloaded music and movies. No need for a 3rd party app.
Click to expand...
Click to collapse
Nokia Music is allowed to store items in the WP8 music store, but other 3rd party apps aren't. This is an inconsistency that really needs to be fixed. While you may not use 3rd party apps, there are a lot of nice ones out there and having to figure out workarounds to move the music around is a bit annoying. Personally I haven't had a need to worry about it but locking up the music storage is limiting our choices on what we can do with our own music files.
jerrya said:
• Rotation option doesn't exist. It is mandatory to be rotated if u hold it horizontally. And it makes phone so un stable in bed when writing. That is so annoying that phone doesn't has this option. It is mandatory to use it vertical. - This would be a nice touch, but not one I feel is a mandatory missing item. I can live without it.
Click to expand...
Click to collapse
(laugh) I have to agree on needing this one! I frequently try to use my phone lying on my side and it's so obnoxious with the rotation. Would definitely be a nice option!
jerrya said:
• Random reboots. I can't believe that happens almost every 3 days once and it has been reported more often, with some series.. - I only rebooted the day I purchased it, otherwise, no issues there!
Click to expand...
Click to collapse
I see rebooting within 3rd party apps more often now that developers aren't required to use managed code. This is one of the drawbacks of native code. I think the OS should be more capable of protecting against that though. An app really shouldn't kill the OS so easily just because the app is buggy.
On that same note, sometimes when a app crashes you can't open it again unless you restart the OS. This leads me to believe that something is still retained in OS memory. WP8 is essentially like a 1.0 version of the OS though, so there are sure to be issues like this initially. Even though the kernel is the NT kernel, it's new for ARM processors, so it's still a brand new branch of the kernel.
jerrya said:
• People hub tile should be have an option to show people profile pics or not. Sometimes in formal situations, on the phone stupid profile pics makes me shame.. Also favorite persons should,be included. I don't,want to see some,of ppl there,and I don't,get in,what logic ppl hub selects those ppl - Unfortunatly, all my pics are decent and safe for work
Click to expand...
Click to collapse
He's talking about the people hub, not the photo hub. If you have your phone connected to Facebook or LinkedIn, the People hub automatically pulls the profile pictures for your contacts. You can argue that you only have contacts on your phone for people that will always have decent, acceptable profile pictures, but can you be 100% sure that will happen? Your choices right now are all or none. You can manually set a profile picture for every contact but that kind of defeats the neatness of the People hub cycling people. It would be nice if you could create a "Favorite People" group of people that you want the hub to show, as well as an "Excluded" group of people that include your pain in the neck brother that's always posting weird profile pics! Similar to the "Favorite Pics" in the photo hub.
Many of these items are similar choice things that would make the overall system better. While I don't agree with having the boatload of customization that Android has (way too messy), I think some simple additions would be nice.
On the subject of lock codes... I understand that some people would want additional security for photos or messages and things like that, but I think having separate codes for all of that is too much. If you need to be that secret, just lock your phone and don't let anyone use it!
I like the idea of the kid's corner and would like MS to expand on that to allow you to create a sandbox that would allow someone to use your phone, play games, make phone calls, without having your security code. Right now, if you have a security code, the kid's corner also has the same security code. Kids are smart! If you're unlocking your phone in front of them, they WILL notice your code eventually. Even the Android "move your finger around" security is a joke. It's fairly easy to watch someone (with the phone turned away from you) and pretty much tell by movement of their hand.
We've all learned workarounds for some of the items on this list and can say that we don't really care, but the truth is, if we have to constantly come up with workarounds, then the OS is missing something. Call Duration, Better Live Tile customization (such as the People Hub idea), better/easier sound/ring customization, etc.
Also, on the Live tiles. I think the medium tile is too big and the small tile isn't big enough for any detail. Coming from WP7, I'm so glad we don't have to have all "medium tiles" now, especially with a large (4.3+) screen. I just don't know how best to deal with this without making it too complicated.
bozzaj said:
I would like to have this option. Sometimes when I'm on a business call I need to know how long I was on the call for. You can say to use a timer or check the time before and after the call but that's extra work that the phone should be able to handle. There's enough other things to juggle during a busy day! Right now I just have to go online and check my account after 24 hours to record my time.
ACtually, I found that it does time the call, when I just hung up with my wife, it showed call duration just above her name, so I would say it does it. that being said, it doesn't 'record' it for later retrieval, so I see the point your making.
His point here is turning off vibrate, not turning off sound. Most of the time I like having vibrate on but during a meeting, not only do I want the phone silent, but I also want vibrate off. No way to do this unless you manually go into settings.
Gotcha, but if you don't use sound, strictly vibrate, then instead of turning on sound and vibrate in the settings once, you would only turn on vibrate. Then, you could either silence or vibrate when you select the toast. Of course, if you want sound and vibrate, yes, you would have to go into settings.
Yes, the first time you use an app it asked you about location. How do you turn off (or on?) that permission after the fact, or see what applications you gave location permissions to? You have to uninstall and reinstall the app to cycle the location permission. Furthermore, reinstalling the app typically loses any data you have. This isn't quite the experience that you should expect. Windows 8 allows you to toggle permissions of Metro apps from the charms bar. No such ability exists in WP8.
I am not sure about that. I just checked 3 apps and could turn off location services. So maybe its app based on wether you can or cannot undo location services.
I agree on the shaking thing, but it would be nice to have some sort of undo. Occassionally I accidentally hit the wrong word or highlight a word (or sentence) and hit a letter instead of the copy. Suddenly, everything I typed is gone! Even a single-level undo would be nice in cases like this.
I guess I am lucky, haven't seen the need for that.
Many of these items are similar choice things that would make the overall system better. While I don't agree with having the boatload of customization that Android has (way too messy), I think some simple additions would be nice.
On the subject of lock codes... I understand that some people would want additional security for photos or messages and things like that, but I think having separate codes for all of that is too much. If you need to be that secret, just lock your phone and don't let anyone use it!
I like the idea of the kid's corner and would like MS to expand on that to allow you to create a sandbox that would allow someone to use your phone, play games, make phone calls, without having your security code. Right now, if you have a security code, the kid's corner also has the same security code. Kids are smart! If you're unlocking your phone in front of them, they WILL notice your code eventually. Even the Android "move your finger around" security is a joke. It's fairly easy to watch someone (with the phone turned away from you) and pretty much tell by movement of their hand.
I agree, I remember my daughter on her kindle was surprised I could access it. She was surprised how easy it was to monitor her swipe to get an idea of her access. What I don't like about kids corner is the turn off to access your stuff. Should have the same ability to swipe back to the lock screen
Click to expand...
Click to collapse
See my responses in bold.
But I do have to say coming from a flashaholic Thunderbolt, the fact that I 'can't do as much' is a breath of fresh air. It is just nice having a simple, easy uncluttered OS to deal with. I had a friend running an TB unrooted, and he went with an S3 about the same time I went to WP8, and watching him use his, I really cringe looking at his screen. I look at mine and think - Ah, simpleton, thats me! And I am happy! Its all right here, no need to open this or click that to get to there. Just turn on, unlock, and blip, there it is.
You are correct that in a sense, this is WP8 V1, and I am sure as it gets more and more active, we will begin to see some of those simple things come into play.
My only real gripe, how difficult it is to make a playlist. But at least what I do have sounds fantastic!
My name is Jerry, and this is my Windows phone!
jerrya said:
See my responses in bold.
But I do have to say coming from a flashaholic Thunderbolt, the fact that I 'can't do as much' is a breath of fresh air. It is just nice having a simple, easy uncluttered OS to deal with. I had a friend running an TB unrooted, and he went with an S3 about the same time I went to WP8, and watching him use his, I really cringe looking at his screen. I look at mine and think - Ah, simpleton, thats me! And I am happy! Its all right here, no need to open this or click that to get to there. Just turn on, unlock, and blip, there it is.
You are correct that in a sense, this is WP8 V1, and I am sure as it gets more and more active, we will begin to see some of those simple things come into play.
My only real gripe, how difficult it is to make a playlist. But at least what I do have sounds fantastic!
My name is Jerry, and this is my Windows phone!
Click to expand...
Click to collapse
Just a few more comments... I think the location service you can't change are the ones that use it only for ads. I've checked a few and don't see anywhere to toggle it. I don't mind ads but I'm not a big fan of targeted ads. Much like ad cookies, it's just really a personal preference.
Thanks for the tip on the call duration.
I agree with you as well! Having a phone that just *works* and is simple to use has been great! I wouldn't trade it for any OS right now. I look forward to next week and MWC to see what the next updates/phones might be!
m_carleone82 said:
1- Windows Phone 8 Lackings
a) Items that Must be in a Mobile OS which Windows Phone Missing
• Call duration information is not exist in OS (I still can't believe)
Click to expand...
Click to collapse
Yeah, would love that too!
m_carleone82 said:
• There is No Notification center. If you miss it to see. You miss it.
Click to expand...
Click to collapse
They say it's coming. We'll see
m_carleone82 said:
• Folderizing those bunch list of application list cannot be scrolled faster. And I believe it should have been foldered.
Click to expand...
Click to collapse
Press the alphabet. Addressed by jerrya
m_carleone82 said:
• Photos doesn’t have custom folders. It supposed to be added for customization and also a security key would be good.
Click to expand...
Click to collapse
I think the current way is good. Addressed by jerrya
m_carleone82 said:
• There is no Sound profiles center you need to close vibrating in a long way from settings/sounds.
Click to expand...
Click to collapse
Yeah. Definitely a shortcoming.
m_carleone82 said:
• Google apps are missing including YouTube at all. No Google apps is something really to be sad.
Click to expand...
Click to collapse
Whose fault is that?
m_carleone82 said:
• Percentage for battery level is not exist natively.
Click to expand...
Click to collapse
Uhm, yes it does?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
m_carleone82 said:
• GPS toggle does not exist so location finding is not working in airplane mod. GPS doesn't work even if you downloaded offline maps and turned wifi on. You need to have cellular signal to make GPS on. So definitely GPS toggle must be build.
Click to expand...
Click to collapse
Uhm, again, GPS works in airplane mode.
m_carleone82 said:
• Location center should be letting user to choose which application can use which not.. It is just one option to be on n off..
And somehow periodically I see location icon on top even those map and location background are fully limited, and I can't see what application is currently using my location. And this makes me feel phone is going against my privacy.
Click to expand...
Click to collapse
Whenever you launch an app, the app will require permission for location use. It's one of the requirement for submission into the marketplace I believe.
m_carleone82 said:
• When theme color is changed, OS based native tiles is changing color instantly but the Tiles that have been created by applications, doesn't change color unless being run once. And you need to open all those apps to update new theme color.
Click to expand...
Click to collapse
Uhm, its due to the way the API is implemented. And why would you want apps running in the background just to update the accent colour?
m_carleone82 said:
• Skype is fully buggy that doesn't let video chat. Neither doesn't work in background fully online. Cannot call online iphone users etc.. It may not be considered as developed application.
Click to expand...
Click to collapse
It works for me.
m_carleone82 said:
• Whatsapp is buggy. Developer said that it’s because of windows platform and porting issues. If you lock screen in whatsapp there won't be any new notification, you need to check it manual. This is so annoying. So after you write you need to leave application. And lock phone to receive notifications. Also It can't send any picture from screen shots. Additional when you return back to application it always needs to be loaded and makes you waited 3 seconds every time which is a huge time that being wasted.
Click to expand...
Click to collapse
Whatsapp background notification works for me, with my phone locked or not. And the devs are lazy. I heard they are working for a optimised WP8 version with Nokia.
m_carleone82 said:
• Cannot close applications. Windows Phone OS cannot close any application. You need to hammer back button 15 times to resume beginning. But somehow also it’s not enough in some cases. There are some apps that asks to be exit and needs confirmations. Some apps directly being closed , some apps goes back inside its navigation like IE n Flickr until start page and then being closed. So Windows phone does not have ability to close app in one standard way.
Click to expand...
Click to collapse
Double tap back to close, I believe.
m_carleone82 said:
• In the messaging and, email There is no “Select all option” ... u need to select one by one each mail or message to erase
Click to expand...
Click to collapse
3 dots -> delete thread.
m_carleone82 said:
• I don't know outside my country but in computer when I open find my phone service that never works. It doesn't work at all. Even it is turned on settings. Nokia asked me to ask it Microsoft. And Microsoft didn't reply me. I think for some countries location services doesn't work. In Turkey it does not work.
Click to expand...
Click to collapse
@winphonesupport <-- Tweet them.
m_carleone82 said:
• Phone alarm should have been working even phone is turned off.
Click to expand...
Click to collapse
Not really possible with current gen smartphones.
m_carleone82 said:
• Text writing should have undo with shaking, sometimes when using shortcut words over keyboard if you press wrong word u cannot go back and fix it so need to re write all. Shake left should make undo which is not exist currently..
Click to expand...
Click to collapse
No thanks. Also, to correct words, just press on them.
m_carleone82 said:
• Phone storage does not show you size of application music and pictures. Just there is one cumulative bar which is so useless to show overall instead of separating each kind.
Click to expand...
Click to collapse
Again, it does.
m_carleone82 said:
• Where I spend the battery? U won’t know where. This should be adapted because there are lots of people discussing it in forums that battery levels are normal if not for what reason. And since it is new OS and we all end users are behaved like testers, we need to make, things certain.
Click to expand...
Click to collapse
Yeah, would love that also.
m_carleone82 said:
• Wi-Fi saved passwords or rest of other password doesn't being seen again even there is a thick that says “show password”. There is this option but completely in functional and doesn’t let you to see passwords.
Click to expand...
Click to collapse
Security. Show password only shows password you typed that instant, not stored ones.
m_carleone82 said:
• 3rd party music or video downloader apps makes its work. But those downloaded music’s are not being able to reach from native music applications. It just stays in the 3rd party applications library and can be reach from it. Native windows music player should have been reach all mp3 which is downloaded.
Click to expand...
Click to collapse
Eh?
m_carleone82 said:
• Rotation option doesn't exist. It is mandatory to be rotated if u hold it horizontally. And it makes phone so un stable in bed when writing. That is so annoying that phone doesn't has this option. It is mandatory to use it vertical.
Click to expand...
Click to collapse
Yeah, should be implemented.
m_carleone82 said:
• When typing text in a text box, there is no standard to how to hide keyboard. Every app works different. You cannot say a certain way to hide keyboard, and scroll to see what has been written. Also scrolling doesn't have a standard way either. Also, Text assisting, words are appearing in some apps, but not appearing in some. It doesn’t have standard too. There should have been one way for everything!
Click to expand...
Click to collapse
Damn right. However, these settings are configured on an application level. For example, while typing an URL, autocorrect would be useless.
m_carleone82 said:
• Physical search button should be configured to run a search application which can be change into Google yahoo etc.. Also search button same time should have been looking email contents and apps
Click to expand...
Click to collapse
Uh huh. You do realise this is a MSFT product? It's like asking Android to provide bing search. Phone search would be nice though.
m_carleone82 said:
• Random reboots. I can't believe that happens almost every 3 days once and it has been reported more often, with some series..
Click to expand...
Click to collapse
Never happened to me before.
m_carleone82 said:
b) Optional Additions
• There is no Instagram
Click to expand...
Click to collapse
Again, whose fault is that?
m_carleone82 said:
• Multitasking gestures
Click to expand...
Click to collapse
Would be nice
m_carleone82 said:
• Unable to find enough local apps for turkey,
• Dropbox would be nice addition
Click to expand...
Click to collapse
Whose fault is that? . . .
m_carleone82 said:
• Lock button and keyboard click sound is bad for me. Should be personalized
Click to expand...
Click to collapse
Turn it off?
m_carleone82 said:
• Even it has graphics card, which game, exist to use it. We almost don't have a nice 3d game, to be impressed with graphics.
Click to expand...
Click to collapse
Whose fault is that?
m_carleone82 said:
• There is no live tile that shows clock, and date same as HTC does. Also it would be good if native clock app live tile enhanced including selected city times rotating in tile.
Click to expand...
Click to collapse
Get a HTC phone if you really want that. Or enjoy your Nokia exclusives. Damn, I really want them.
m_carleone82 said:
• Since start menu is customizable with a theme color , all applications must have been force a icon color weather is native or theme color and user should pick it up how to be.
Click to expand...
Click to collapse
Ask developers to implement that. API available.
m_carleone82 said:
• Screen brightness is just tree Level doesn't let to make a fine setting. And long way to reach from settings,menu.
Click to expand...
Click to collapse
More fine tuning would be good. And hard to reach? Seriously. . .
m_carleone82 said:
• People hub tile should be have an option to show people profile pics or not. Sometimes in formal situations, on the phone stupid profile pics makes me shame.. Also favorite persons should,be included. I don't,want to see some,of ppl there,and I don't,get in,what logic ppl hub selects those ppl
Click to expand...
Click to collapse
Ok... You can remove profile pics.
m_carleone82 said:
• There is Turkish language support,
There is Turkish keyboard
There is Turkish keyboard assistant
But there, is no voice command for, Turkish language. Downloadable content for languages is just a few. This technology is not completed for many.
Not only voice command but also
Bing search doesn't exist on my native language.
Click to expand...
Click to collapse
Bug MSFT I guess
Windows Phone 8 was blessed as a Business OS. But thats not true!
There are missing still some important features like:
- Better calender view (weekly view)
- VPN
- signing e-mails ( S/MIME)
-encypt and decrypt mails
We are currentyl using WP7/WP8 (Lumia 900/Lumia 820) and Blackberry Devices in our Company. Since signing E-Mail is a must have in our Company we are not able to read our mail or attachemnts on our WP Devices.
With every other devices like Android, Iphone and Blackkberry is this possible but not with a Windows Phone 7/8. 2 year before i had talked to MS about this problem (good relationship in Austria) but there is still no solution for this.
I´m so sorry for this but we have now to Switch back to Blackberrys and Android Phones... :crying:
We are now waiting for the new BB Generation. In the next weeks i will upgrade our BES to BES 10
Hopefully MS will release this functionalities with the next update...
Privately i will stay with Windows Phone...
its missing an Office Suite with any functionality at all
How is Microsoft not going to have an Office suite, when both Android & iPhone have Office suites which rival the Full Office suite, both creating & editing MICROSOFT PPT, PPTX, DOC, DOCX, XLS, & XLSX, with more functions than you can imagine ...
microcrap includes a blank office page with 2 retarded options and no other functionality at all
can someone please shoot those people so they can rehire smarter employees?
--
i need separate volume for ringtone / media / etc . (like android)
Things that WP 8 needs from my point of view as a user (seperate from IT policies that can be implimented). I have a Nokia 810 btw...
1. Alphanumeric password support. That 4 digit pin crap has GOT TO GO.
2. Full device encryption ahh the good old days of WM 6.5.X
3. Device search
4. A DEDICATED PHONEBOOK. I do not want all of my facebook, skype, etc contacts listed in with my phone book. That just plain sucks. To avoid this I use the seperate FB and Skype and TANGO (when available) apps.
5. ability to choose background colors other than black or white in addition to more foreground color choices
6. Can we please crank up the volume of the handset? how I miss my HD2 and it's annoyingly loud alarm clock...
7. Task Manager anyone? Pressing back all the time is kind of stupid...
Lilttle things I would like Nokia to include:
1. Compass
2. Flashlight
3. Ability to connect to my phone at Wireless N speeds with my PC (G? really? in 2K13? come on now...LTE will be able to completely saturate that interface)
1. VPN
2. Task Manager
3. App to SD (For any device SDCard Support)
4. Read first post...
Sent from my Windows Phone 8S by HTC using XDA Windows Phone 7 App
I was going to buy a Wp8 Device but i just read this thread and i say to my self. what the hell is going on .
anhyeuemmaimai said:
Things that WP 8 needs from my point of view as a user (seperate from IT policies that can be implimented). I have a Nokia 810 btw...
1. Alphanumeric password support. That 4 digit pin crap has GOT TO GO.
2. Full device encryption ahh the good old days of WM 6.5.X
3. Device search
4. A DEDICATED PHONEBOOK. I do not want all of my facebook, skype, etc contacts listed in with my phone book. That just plain sucks. To avoid this I use the seperate FB and Skype and TANGO (when available) apps.
5. ability to choose background colors other than black or white in addition to more foreground color choices
6. Can we please crank up the volume of the handset? how I miss my HD2 and it's annoyingly loud alarm clock...
7. Task Manager anyone? Pressing back all the time is kind of stupid...
Lilttle things I would like Nokia to include:
1. Compass
2. Flashlight
3. Ability to connect to my phone at Wireless N speeds with my PC (G? really? in 2K13? come on now...LTE will be able to completely saturate that interface)
Click to expand...
Click to collapse
Aside from colors and task manager(which is not needed anyway), you need a heavy dose of "learn to use a windows phone" my friend.
In fact, over half of the things "missing" are present and accounted for, you just need to look closer.
So, instead of QQing, how about you look in the phone settings, or...you know...USE the marketplace?
app2sd
some customization options
more popular apps (for services like catch notes, which i missing so much on wp8)/or more indie games from iphone/android devs ;/
normal SKYPE.. oh microsoft
anhyeuemmaimai said:
4. A DEDICATED PHONEBOOK. I do not want all of my facebook, skype, etc contacts listed in with my phone book. That just plain sucks. To avoid this I use the seperate FB and Skype and TANGO (when available) apps.
Click to expand...
Click to collapse
Doesn't this work on your phone?
Settings, Applications, people, filter my contact list
And then uncheck everything except your primary contact list?
I find the biggest issue for me as a windows phone user [from the HD7 to the 810] is the still remarkably poor offerings. So apps aren't even present like Hulu, some are covered by third party providers [youtube - metrotube] and there is a good selection of games. The app market is the single biggest handy cap that the OS has atm and that's needs to be fixed.
Apps I use;
Battery Meter Pro [Provides a live tile with icon and % of battery]
Metrotube [an actual youtube client not a browser shortcut]
Amazing Weather HD [provides a live tile with updated weather]
Facebook for WP8 [more common android looking facebook app]
MediaFire Manager [file storage]
Skydrive [MS provided - there are dropbox apps too I just don't use it]
PinInterest [an actual client for viewing PinInterest]
PAypal
Ebay
Skype [VoIP]
Snes8x [The only emulator atm]
tumblr.viewer [an actual client to view your tumblr account - no downloads though]
Weave News Reader [like androids pulse news reader]
WiFi Live Tile [provides a live tile with information on wifi strength and goes straight to settings]
Tankopedia [World of Tanks information - wiki as a client]
World of Tanks Assistant
WoW Companion [MoP Compatiable WoW Armory app]
Touchmouse [makes the phone a mouse for computers]
Flashlight [Pro version, gives a live tile to quickly turn the flash on]
Crackle [like hulu, not so much selection though]
BBC News
Cellular Live Tiles [gives signal strength, Data info and goes directly to settings when clicked]
Netflix
The three apps I am missing atm is Hulu, a stand alone movie player and Teamspeak.
Battery lasts most of my days use, with an occasional charging here and there. The rest of the settings are easy enough to get too, the letter management in the app list makes it very quick to get to apps you want [just got to get used to it] and very seldom see a reboot [about as often as my Samsung S3 does actually.

Categories

Resources