[Q]any registry tweak for sms notification? - Windows Phone 7 Q&A, Help & Troubleshooting

dear devs, i was wondering if there could be any registry tweak to light up the led when sms come just like what the phones do when low battery

I guess not. It really a shame that MS couldnt implement a message, email, missed call reminder. The implemented missed call reminder only works for a few minutes after the missed call.

Agreed. The LED is actually a non-trivial battery drain, even on a short duty cycle (plus the slight increase in CPU needed to wake up and drive it) but it should be the user's choice, even if off by default.
Unfortunately, I don't think MS included any such functionality, hidden or otherwise. Doing it with homebrew might be possible, but wouldn't be easy; you'd need an app that could access SMS (or call, or whatever) activity, drive the LED state, and do it from the background long-term without crippling the battery life. Frankly, it's the ideal kind of thing for a native app... but we still haven't managed to make those work.
What you would need, in order to implement this in a homebrew app:
Access to the history/activity of the behavior you want to indicate (SMS, whatever).
Access to the LED, either through an official API to control it or by sending IOCTLs to the driver.
The ability to run long-term in the background - I don't know if this is feasible right now, though you might be able to savagely abuse the background audio decoder agent (the only official API that allows long-term third-party code execution in the background).
APIs for SMS (and I think for notification LEDs?) are on MSDN.
http://msdn.microsoft.com/en-us/library/ee498239.aspx
http://msdn.microsoft.com/en-us/library/ee481040.aspx
Those are for Windows Embedded Compact (CE7), which is not exactly the same as WP7 even after you strip away the WP7 UI and application model. Nonetheless, they've been useful references to me when developing native code in the past, and might work here.
If you're not familar with native code development, search this forum for Heathcliff74's great how-to on the subject. If nothing else, it would be worth it to find out if those APIs can be used.

GoodDayToDie said:
Agreed. The LED is actually a non-trivial battery drain, even on a short duty cycle (plus the slight increase in CPU needed to wake up and drive it) but it should be the user's choice, even if off by default.
Unfortunately, I don't think MS included any such functionality, hidden or otherwise. Doing it with homebrew might be possible, but wouldn't be easy; you'd need an app that could access SMS (or call, or whatever) activity, drive the LED state, and do it from the background long-term without crippling the battery life. Frankly, it's the ideal kind of thing for a native app... but we still haven't managed to make those work.
What you would need, in order to implement this in a homebrew app:
Access to the history/activity of the behavior you want to indicate (SMS, whatever).
Access to the LED, either through an official API to control it or by sending IOCTLs to the driver.
The ability to run long-term in the background - I don't know if this is feasible right now, though you might be able to savagely abuse the background audio decoder agent (the only official API that allows long-term third-party code execution in the background).
APIs for SMS (and I think for notification LEDs?) are on MSDN.
http://msdn.microsoft.com/en-us/library/ee498239.aspx
http://msdn.microsoft.com/en-us/library/ee481040.aspx
Those are for Windows Embedded Compact (CE7), which is not exactly the same as WP7 even after you strip away the WP7 UI and application model. Nonetheless, they've been useful references to me when developing native code in the past, and might work here.
If you're not familar with native code development, search this forum for Heathcliff74's great how-to on the subject. If nothing else, it would be worth it to find out if those APIs can be used.
Click to expand...
Click to collapse
Thx. Is's very kind and patient of you tell me so much about that.

on my hTc 7 pro the green led blinks on sms and missed calls. but only for 5 minutes than it goes off... i would like to have it on till i look on the screen what is the notification... that would be cool. but i haven't found any tips how to tweak that.
recently i look in the registry and found a /notification/ led path. that could be to the path of the green and red led. and there is some things like "blackout time" custom timer... etc. but i don't understand the timing they are in binary code written and i'm not sure if this is for the LED on top of the handset. i found this registra on windows mobile devices too. (and there it is for the blinking led)

The LED on the handset is certianly the "notification LED" if you phone has one (not all do). It lights up or blinks to "notify" you of certain things (missed calls, low battery, charging complete, etc.)
There may be some registry values that can control its behavior. Otherwise, I'd suggest trying with the native APIs. I'd like to help with this but you'll have to wait quite a while if you want me to do so; I've got a lot that I'm working on right now.

Moved to WP7 Q&A​
This is a development section, it is not for questions. As highlighted in the read before posting stick​

Related

Basic features that should be addressed...

I bought my wife a blackberry bold this past weekend and all I can say is WOW. That thing has WAAAY more features (and settings) than my G1. And don't worry, I unlocked the phone so my wife can use it with our T-mobile accounts. In setting up this device, I've come to realize that a LOT of these features should be implemented into other devices, namely, the G1.
Here's a short list
1. Power-based settings (i.e. brightness changes when plugged in and on battery). A very BASIC feature.
2. Hiding folders in the music player. Blackberry gives the options to NOT include certain folders when searching for music. When I listen to music, I don't want to hear 50 ringtones.
3. User Customizable Profiles. Silent, Vibrate, Work, Home...Why not?
4. Alarm based auto-power on. If i set an alarm, and my phone is powered, but not on, it should be able to power on and wake me up. This is a GREAT feature for people that rely on alarms.(like myself)
5. Bluetooth profiles. I'm not new to mobile devices, so I know this is something they're currently working on. But come on...all we have is the headset profile. What come of lame-o **** is that? a2dp and wireless file access would be great, as well as phonebook access and callid and sms info for car kits...
There's more that I'm forgetting, but that's the gist of it. I realize that we're all technically beta testers at this point, but they should have released a more polished product to the masses. It would have helped their word-of-mouth sales greatly. Look at all the vista negativity. I've been using it without any problems since it was RTM, but people hate it because 'they heard' it has tons of problems. The average joe isn't going to want the g1 because 'they heard' it can't do this, or it can't do that. I personally love the device, and it has great potential, but t-mo and google may have shot themselves in the foot on that front.
InGeNeTiCs said:
Here's a short list
Click to expand...
Click to collapse
I'm not trying to be an Android apologist here, but let's run through your list.
1. Nothing exists, but it would take no more than an hours work to code something in Java to handle this.
2. Create a folder named ringtones in the root of the sd card. Nothing in there will be parsed by the default Music Player app.
3. Locale is probably the most popular app to handle this. Get it on the Market.
4. If your phone is in standby (short press red button), Alarm Clock can wake Android up. A more advanced alarm app is Klaxon. Again, get on Market.
5. A2DP support is pending.
No hardware is released perfect. Some imperfections are worse than others, and it's really also a subjective matter. If that above list seems problematic, consider that a competing product has no copy and pasting or support for background apps (making IM apps useless). In that kind of light maybe the fact that your G1 doesn't brighten the screen when you plug it in doesn't seem so bad anymore.
Honestly though if the choice between Blackberry and G1 is a list of periphery features rather than BIS vs Gmail, then you're completely missing the point imo.
Might I also point out that Blackberry OS (and Symbian and WinMo and iPhone) are all very mature OSes. Blackberry being the most mature, and it clearly shows in it's stability and simplistic ease-of-use. The iPhone just has a ton of money backing it, so it's no surprise that it has some superior features, even though its only 18 months old.
Windows is windows... 'nuff said.
Symbian has the backing of Nokia, so obviously it's well developed too.
All of these OSes were CRAP when they first came out. Google has plenty of money backing this project (I hope...) so I plan on giving them another 6 months to work out some of these basic problems before I go back to my good ol' Canadian-made Blackberry.
By the way a new app called simply "Power Manager" has appeared on the Market. Here's the description:
This application is similar to the power mgt apps available on laptops. It allows you to quickly view and change the settings of your phone depending on power states (e.g. turn off the GPS when the battery level drops below 30%, lower the brightness of the screen when on battery power, etc). It also maintains battery stats.
Click to expand...
Click to collapse
I just downloaded the battery program and it does address some of my concerns. It just sucks that all of these features have to be added as apps. Not having root access on an opensource device seems really stupid. It's like going to a ferrari dealership giving away free cars. Free cars! BUT....we took the engines out of them. Enjoy! What the hell are you supposed to do with that?
We've got an awesome platform to work with, almost all the source to create anything we want, but no access. It's beyond lame.
And far as the blackberry thing goes, I'm in NO WAY a BB fanboy. I've never owned one, and I they're a pain in my ass because my clients buy them thinking 'they just work' with MS exchange, when they need the enterprise client which my company doesn't want to shell out the cash for. So they get pissed at me when I tell them it doesn't 'fully' integrate. My frustrations aside, I merely used BB as an example of a device that had features that should be available on the G1.
And I think the whole alarm thing got misread. I realize that the phone will 'wake up' when the alarm activates. But if my phone is completely powered off, it will not turn itself on to activate the alarm. While this is not a totally necessary feature, and will probably be rarely used, it's very important for someone who RELIES on their alarms for scheduling purposes. I usually shut my phone off at night (I have customers in several distant timezones), but I can't do that if I want to use the alarm. I could obviously buy an alarm clock, but I don't see why the g1 can't do what another phone can.
No offense but bad analogy... It is hard to find the correct analogy... I guess it would be buying a hand gun, that you couldn't turn the safety off LOL Remember root is taken away for protection of users who don't know what it is. And as of right now we only know root is taken away on RC30... maybe when 1.0 comes out it will be available. Maybe they are working on a GUI to allow you to enable root. We have a long ways to go so I wouldn't say root is gone forever.
Side note: for your users with BB devices. I run Scalix on linux. Funambol bridges the gap for my users. I think that they even have an exchqange connector. Funambol is also availbe in the market place on the g1.
I have no problem with the actual integration process, the company just doesn't want to pay for it. We have people using windows mobile devices with no problems. I give the device recommendations, but they always come back with blackberries thinking it's the same thing. It's just frustrating. I'm venting. Sorry.

WM 6.1 Treo800w mute microphone

Greetings,
For reasons similar to an earlier poster, I'd like to find a way to map a button to mute/unmute the mic during a cell call.
A small application was posted here: http://forum.xda-developers.com/showthread.php?t=386810 which does this.
However it does not work on the Treo800w (as well as a few others) due to the fact that it looks for text on the button, which isn't there in this model.
In any event, after exhaustive searching - their doesn't appear to be any ready-made solution for this. I'm willing to write my own, but it's not even clear to me from the msdn api docs that it's even possible to directly manipulate this? Is this type of control "protected" from the Windows portion of the phone?
The idea would be to write a tiny app to toggle it and then map it to aebutton or something similar.
This is pretty much exactly what "itsallwright" did, and I'd like it for the same reasons - it's just his approach doesn't work on the Treo800w.
Thoughts?
-C

Comparing Rooted Android against Jailbroken iPhone

Hi all,
In the past three years, we've witnessed greatly increased competition among smartphones. Android and iPhone are considered by some to be the two most serious contenders, and both have attracted many new users who migrated from the other platform. I myself was a devoted winmo user, and had used every generation of winmo phones/PDA since the late 90's. When iPhone was first released, I did not take it seriously at all, because there were so many limitations and the initial phone did not support third party applications. I made the change from winmo to iPhone only in 2009 after a rather detailed comparison exercise between winmo and iPhone. I've been more than happy with my decision and the jailbroken phone. However, technology does not stay still, and there has been lots of changes especially in the hardware end and the entry of Google into the smartphone business. Personally, I'm greately tempted by the potential of hugh screen size offered by handsets such as the HTC supersonic, and would like to understand if my smartphone experience could be enhanced even more by switching to Android. I also think that this topic area would appear on the forum for every single Android phone, and it might be good to centralise the discussion to get the maximum input possible. Hence this thread.
RULE FOR THID THREAD:
Rule 1: General Courtesy:
I would like to state that this is not a thread for any basher or haters of Google or Apple. If you're one of them, please leave and preach your anti-evil corporation philosophy elsewhere. This is also not meant to be a thread to try to convert any Google phone user to iPhone or vise versa, so while I recognise it's going to be hard, please try your best to stay objective and refrain from imposing your opinion as the only possible logical choice on others. I plead that all you all observe this, so as to get to the end of all the discussion and research as efficiently as possible.
Note: While it is not within my power to remove trouble makers, I will not be responding to any troll on this thread.
Rule 2: Discuss one area at a time, with suitable heading in the title of your post.
This thread may become very long, and people interested in finding out specific comparison should not be made to read through every word in every post. So, let's always describe in the title of your post what your points pertain to.
For now, the title descriptions to be used are: (If you feel the need to have additional topic area for comparision, please let me know so that it can be added here)
- Cut and paste design
- Multitasking design
- hardware button design
- multimedia capabilities
- Touchscreen technology
- Storage capability
- Processor and graphic capability
- Market place
- Application software
- Vendor support
- Firmware upgrade
- Battery life and design
- Camera and video
- Best GPS software (I feel that this is important enough to warrant distinct segregation)
- Theme and UI customization capabiilty
- User interface of applications
- User interface of desktop/sprinboard/program launcher/widget/task switcher
- Application defaults
- Notification handling
- Best web browsing application
- Global search
- Speech recognition
- Device management (backup, restore, syncing, etc)
- Side loading of applications
- File Management and Access
- Using it as a business phone
Rule 3: FULL potential of the phone. You can tweak, customize, as long as the procedure could reasonably be expected of an ordinary user.
Since this thread is mean to help END user choose the BEST phones in the market, the capability that you discuss must come from application programs that has already been made available to the public rather than something that can be done but requires programming knowledge to achieve it. Similar, it. A jailbroken/rooted phone's capability can be discussed as long as the jailbreak tool is available and could reasonably be performed by an average user without hacking skill to personally do the hacking themselves. Also, since my intention is mainly to find out which should be my next phone, we should base it on OS4.0 in iPhone, iPhone HD, and the best possible Android hardware likely to be available in the next few months, and I assume this is HTC Supersonic.
Therefore, no "the phone is crippled out of the box" type of debates please.
Rule 4: Focus on describing the capability rather then merely state your opinion on your preference without backing it up. (For this reason, I'll only draw up a comparision chart after giving everyone the chance to state all the known facts.). Try to state the name of the program/utility that you would use to achieve that capability. I think this would be highly educational.
Enough rules for now. Let's see how it goes.
Thank you for participating on this thread.
Cheers.
Summary post (reserved)
Summary post (reserved for future use)
Summary post 2(reserved)
Reserved for future use.
Summary post 3
Reserved for future use
Cut and Paste design
Android
-------
Please correct me if I'm wrong, my understanding is that the cut and paste design is a little inconsistent depending on the OEM. I've personally played with a Samsung Galaxy, and noted two different cut and paste design:
1) Press and hold. Unfortunately, there is no magnifying glass pop up to indicate the position of the cursor. You have then to use the joystick(not sure if this is what they call it) to position it.
2) I vaguely remember at other place, method 1 is not supported. You have to use the hardware button , and select an item there in order to do copy and paste.
Recently, I had a chance to look at a video showing the cut and paste in one of the HTC Android phones, and noted a third method, very similar to iPhone, but the magnifying glass is square rather than round.
I also got the impression that copy and paste is not supported on non-enterable field. I'm seeking users with expertise to correct/enhance this piece of information.
Edit: See post #71 for some more precise description on how cut and paste works in Android, described by dsymbol.
iPhone
------
Press and hold will provide the handle to select the text for copying. This pretty much work across all the places, including email, webpages, on both enterable and non-enterable fields.
Edit: However, there ARE also some rare exceptions where inconsistencies have been found, mainly arising from software created before iPhone introduced cut and paste in version 3.0 I think. An example that comes to my mind is an office document application called QuickOffice, which was around prior to OS3.0 I think. Here, to select text in the word document, instead of holding your finger down, you have to double tap to reveal the handle for text selection, you then press an icon at the bottom to copy or cut. This is quite different from the usual methods used by applications using the Apple's standard API. Most office documents applications including Office2 (It is actually Office square, with a little 2 at the top right of the word Office) and Document to Go are using the familiar cut and paste used everywhere else.
Multimedia capability
A. Using hardware button to start/pause/skip/repeat song and change volume without headset
- iPhone: Yes, using a Cydia application called VolumeButton Extender
- Android: hardware button can only control volume and not pause/play/skip/repeat.
B. Using supplied headset to start/pause/skip/repeat song and control volume
- iPhone: Yes.
- Android: It can start/pause/skip/repeat with the phone in the pocket, but any volume change must be done on the device itself.
C: Volume change increment:
- iPhone: 16 volume increment, allowing you have have the volume closest to your need, e.g, listening music while trying to get to sleep without being kept awake.
- Android: 8 only, therefore offering less precise volume level for the user. Not sure if this is device specific or generic across all Android phones.
D: Playlist combining audio and video files and playing video files with phone shut off.
- iPhone: Yes. In order to play video with screen completely shut off, switch off the phone, and on the lock screen start the music player, then switch off.
- Android: It is possible to play music video with the screen shut off, but you cannot combine video and audio in the playlist. In fact the default music player does not play video - only audio.
I invite Android users to help to beef up or correct information pertaining to rooted Android phone's capabilities.
Multitasking
A: Extend of multitasking for third party applications.
Android: All applications seems to be kept alive regardless of the situations.
iPhone: If you use the Backgrounder, all applications and processes could be kept alive. If you use the smart multitasking from Apple itself, only processes that needs to be kept alive are kept alive. Such processes include GPS function, audio streaming, file upload/download where the service must be completed without interuption. Apple believes that this smart multitasking is the key to battary life and performance, so have chosen this implementation instead of what Steve Job called an easy but wrong method of "full multitasking". Application's "state" is saved, so users need not exit an application when switching to another one.
B: Methods of task switching by showing active tasks and choosing it.
Android: Menu button to show the most recently used task, which could be different from active task. Hence a newly boot up Android might not show the phone application although it is already active. This is the only method for switching to other running application without going to the program launcher.
iPhone: Many options exist to show active tasks and choosing which to switch to. Method of invoking could be one of the 19 ways provided by the Activator(methods include single click of home key, double click of home key, press and hold the home key, shake the device, double press the sleep button quickly, press and hold the sleep button, slide into the screen from below, slide into the screen from bottom left, slide into the screen from bottom right, pinch the springboard, spread the springboard, double tap the status bar, tap and hold the status bar, swipe down the status bar, swipe left on the status bar, swipe right on the status bar, tap on volume heads up display, press volume down then up, press volume up then down.)
Kirikae: list the active task. You can kill the application or switch to it there.
Circuitous: List the icons of the active task. You can kill the application or switch to it there.
Multiflow: Display and switch to task Palm Pre style. You may close the application by swiping it off, among many available methods.
ProSwitcher: Display and switch to task Palm Pre style. You may close the application by swiping it off, among many available methods.
There are others doing more or less the same thing which I would not bother listing on. You just have to choose a method that suits your own preference and personality.
With OS4.0, double click of home button will show the most recent task on the dock and switch to the application there. You might close the application by holding the icon until it wobbles and press the deletion badge.
C: Going directly to the next and previous application without bringing up a list of task:
Android: You may use the back button to go the previous application. Going to the next application is not supported by one click/touch operation.
iPhone: Using Circuiutous, you may use any of the 19 methods mentioned above to go to the next and previous application. Some people find it extremely intuitive to swipe the taskbar left and right to go to next or previous application, similar to the way pictures are changed. You could of course also use hardware button if that's what you prefer.
I invite Android users to correct/beef up any unmentioned methods.
boi youre wastin your time,
pick up your iphone and go to hell with it...
steve,
It would be nice and easier to just have a comparison table like the one Sethos II made.
gogol said:
steve,
It would be nice and easier to just have a comparison table like the one Sethos II made.
Click to expand...
Click to collapse
Thanks for the suggestion. My intention was to draw that up only after all the facts are known, rather than making biased conclusion without the benefit of complete information. It will be included later. That's why I've reserved a few empty posts to do just that.
Battery life and design
A. Removable battary - This is something that I cherish quite a lot during my winmo days. I liked the ability to carry along spare battaries before I board the plane for a long trip for example, where power source is an issue.
Android - YES!
iPhone - No. There are alternative portable power packs but they tend to make the phone bulkier. There are also portable chargers, but these solution is just not as good as having user replaceable battaries.
File Manager and Access
A. File Manager
iPhone:
Using an application like iFile from Cydia, users could see all the directories and subdirectories, and files in all directories. It also allows the files to be copied, deleted, moved. Clicking on a picture would display the picture, clicking on a music file will play the music file.
However, if you're trying to do a file attachment on a forum like here, it cannot be done.
Android: Same weakness due to not having a native file manager???
B. Ability for all applications to use the same directory?
iPhone:
Generally there is no such capability, although there are exception (e.g. The music player dTune could play music files downloaded with the Music Meow application). Therefore, if I have more than one spreadsheet programs in an iPhone, these different applications could not update the same spreadsheet file because the file has to be stored in the application's own directory. iFile of course could access any directory and display files in any directory.
Android:
Any such limitation? Which are some of the popular spreadsheet applications for example? Could you specify the location of the saved files to be anywhere?
Side loading of applications
Sideloading allows users to install programs which were not from the officially sactioned market place:
Android: - Yes.
iPhone - Yes. Non-programmer type users could install applications from the Cydia store. These are often program that Apple won't approve, but could also contain applications removed from the App Store such as porn applications.
Multimedia capabilities
A. Video playback test.
I invite anyone to provide links of videos for testing purposes to compare the two phone's playback capability.
For now, I would like to get you guys to refer to this thread and see if the video play by just clicking on the link. If not, are you able to download it and play smoothly, without pause or frame loss? Without the audio/video going out of sync? Details about this video is in post #7. The file is made for the screen resolution of HD2.
http://forum.xda-developers.com/showthread.php?t=645610
iPhone:
Yes. Without conversion, it plays smoothly although the video is not made for the iPhone screen resolution.
See youtube videos
http://www.youtube.com/watch?v=kAGqKYlSnHA - this is playing after downloading the file
Here is the video test when played directly rather than downloded first.
http://www.youtube.com/watch?v=C39CHtqOAso
Android:
Does it play?
Did I miss something or there's nothing about, say, business capabilities - Exchange and Office support? Don't know how to label the post, but here's the question:
On the iPhone, I know there are office package(s) available, but here's what I want to know - how do you transfer files there? Do you get a documents folder or do you need to look for a directory with one of those cryptic names? Also, how does it handle email attachments? Can I save a ppt I receive for later use in the office program?
With regard to Exchange - can I have full support that will include push for Tasks, Email, Calendar and Contacts? Not push for the latter three and manual sync for Tasks?
Best GPS software
iPhone:
Probably no single vendor can justifiably claim that they have the best GPS in every country. TomTom is the best in Australia (I'll justify that assessment later), but it is probably not as good in say Navigon in US, if we base it on sales statistics. The major choices are:
TomTom
Navigon
iGO
NDrive
Sygic
M6 (which I understand is the best in Asean)
Copilot
Each user may have a different idea of what constitute the best. Some value live traffics, some speed warning, some completeness of road speed information for speed monitoring, some warning upon approaching schools, some the ability to perform google search in addition to POI search, some 3D realistic view, some music control within the application, some intelligent routing that considers traffic congestions among other things, some text to speech, some multitouch user interface for map zooming in and out, some completeness of safety camera database, some map currency.
In Australia, my own preference is TomTom. It has extremely nice user interface, google search , very complete speed information for all roads, map is quite up to date for most places, it incorporates pinch and zoom, warn you when appraoching safety camera and when you overspeed, allows easy control of music without leaving the application, has 3D realistic view for major highway exits and intersections, decent text to speech option. After receiving phone calls, it automatically resume with the most up-to-seconds GPS coordinate and location without waiting for signal. If the call is terminated by the other party there is no need to touch the phone for the resume to be completed.
Sygic also uses the same map, but the UI is bad and reminds me of the winmo style, although the UI is still way better than winmo type of GPS.
Navigon, Copilot, iGo, NDrive all uses maps with rather incomplete speed information in Australia.
Android GPS ??
Which is the best in Australia and what can it do?
Note: I use Android, so if it sounds like I am biased, it's because I am (Although I tried to stay unbias). I removed some categories because I felt that either I did not know the answer (Rare) or that I didn't feel like taking the time to write one up. These are NOT definitive answers based on potential, this is purely from stock functionality (With touches on their equivalent of being rooted sometimes). Why did I do a stock comparison? This because 1) That's what most people will use and 2) The limits of both OS' when rooted/jailbroken are almost non-existent
- Cut and paste design
iPhone: Hold over text, magnifying glass comes up, release to get the two bars then drag them to copy. This is pretty straight-forward.
Android: Method 1- Hold on text entry place, then choose "Select All" or "select Text"
Method 2- If your device has a keyboard, hold the shift button and select text (Works in most places)
Method 3 (Limited to 2.1 sense Users)- Same as iPhone, but it has a few more options than cut, copy, paste.
- Multitasking design
iPhone; Currently not available for stock and I have no experience of it with a kailbroken iPhone
Android: Android multi-tasks without tweaking. It can hold as many app in memory as RAM allows (It will only kill processes when the processes kill themselves or when it runs out of memory, in which case it kills the oldest ones). To see a list of RECENTLY running processes, hold the home button. This will bring up a list of the last 6 used (Obviously it's not practical to show the 50 or so the Nexus can have running at the same time).
- hardware button design
iPhone: Home button which is multi-functional (Home, Double tap will have different functions depending on users choice/firmware), (Camera Button?), Volume Rocker, and Sleep/Wake Button.
Android: All Android phones MUST include at least a Home Button (also multi-functional, but not as much so), a Menu Button, a Back Button, and as far as I know an End Call Button. They also usually include a camera button and a volume rocker.
- multimedia capabilities
Not quite sure what we want here, but if it is how the experience is, the iPhone wins pretty heavily. Android can do the same exact things, but it looks ugly while doing it. Sense Users have the best form of Music app in Htc Music, but I'll try to stick to stock for now.
- Storage capability
iPhone: Whichever size you buy is what you're stuck with for life (16 or 32gb in 3GS)
Android: Normally have limited internal memory (Action of phone manufacturer) which means many apps may not be installed (Not a problem as most Android apps are under 1mb). Sdcards are used, give an "unlimited" amount of external storage.
- Processor and graphic capability
iPhone: Pretty sure it's 600 mhz, correct me if wrong
Android: So far we're at 1ghz, need I say more?
- Market place
iPhone: Don't own one so someone else will need to cover this
Android: Mention what you need to know and one of us Android users will tell you.
- Application software
Not quite sure what we mean by this.
- Vendor support
Both operating systems is for as long as the hardware capabilities don't force them to stop supporting it.
- Firmware upgrade
iPhone: Upgrade through iTunes, you may not get all features in the firmware update.
Android: OTA updates, if you're getting the update you usually get everything in it.
- Battery life and design
iPhone: No removable battery, and from what I've heard, battery life sucks.
Android: Removable Batteries, from what I've heard, the Nexus can go a day and a half no problem. The Nexus is thinner than iPhone, has a bigger screen, looks sexy but the iPhone would win in this department (But the plastic backs kind of kill it on the iPhone for me)
- Best GPS software (I feel that this is important enough to warrant distinct segregation)
iPhone: Third-Party apps, not sure which is best
Android: The Google Navigation is by far the best I have ever used
- Theme and UI customization capabiilty
iPhone: Out of the box, you can change the lockscreen wallpaper and move icons around.
Android: Wallpaper, Homescreens, can replace anything if you don't like it (Most apps will allow you to use that instead of the stock app equivalent).
- User interface of applications:
iPhone: In my opinion, they are all a little stale because they use the SAME exact interface (But that's the point of a user interface).They use the bar at top, bar at bottom for navigation, it's all equivalent to the stock apps
Android: They vary a little more in UI but they all are the same on thie inside. Press Menu to view options, they all have the grey bar (Mostly because this is integrated into the Android framework)
- User interface of desktop/sprinboard/program launcher/widget/task switcher
iPhone:
{
"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"
}
Android:
- Notification handling
iPhone: Annoying popups, 'nuf said
Android: Status bar, pull down to see all notifications
- Best web browsing application
Not really a fair comparison as iPhone has two (Opera or Safari)
- Global search
iPhone: Can search all device files from homescreen
Android: Same as iPhone but the web search is also integrated
- Speech recognition
iPhone: Voice Over, For Music and...? purposes
Android: Voice Search by holding the search button, Voice Dialer by holding send button, voice keyboard in all text entry fields
- Side loading of applications
Clarification?
- File Management and Access
iPhone: Not sure
Android: Have full access to the all partitions other than the system partition (AFAIK) without root.
Ok so here is my verdict on iPhone Vs ANDROID
When iPhone was release i was an Apple fanboy form that very time, i paid heavily for iPhones, they were like life to me, i have every iPhone to date and the first android i got was the G1, on using it i could only say one thing, it is the future and it is proved itself day by day
Experiences
1. Jailbroken iPhone
I love how u can do almost anything but nothing in the iPhone, only thing an iPhone drools over is apps and apps and nothing else. iPhone has an edge over android in just apps. For everything else u are crippled and for anything u want to do u ought to have a computer. Battery life is not what i would love and it has a boring interface good enough for 50 year old person who can just understand to dialer and dial
Android
Android is still immature, one thing u would hate about android is that it updates acc. to devices, it will add a feature only when a device is made to have the feature. other things Android is the most customizable OS ever made in the history of smartphones and mobiles. It has a clean interface if u understand it and by far the most efficient in everything it does. You shouldnt be surprised when it updates itself to become more efficient. iPhone revolutionized the designing but android revolutionized software. Android what i say is a complete OS, it just like a mini computer, to use it u dont need to have a computer, u can do everything on the phone itself, u want to add some music, videos anything do it on the phone itself, u want to update, download do it on the phone itself and it is robust enough to even create websites, i created my website using my android phone and nothing else, Android has endless possibilities.
Multimedia-
u dont have to be tied to computer to do anything on android. U can use anything 3rd party if u dont like stock, 3rd party has the ability to add more stuff which is not in stock. onlu con is that u have no equalizer.
It can play more formats than iPhone, u dont need to convert and sync music, u r not tied to use the default music player. The gallery is the best one around.
Android has the most user friendly interface, what u need most is on the desktop others in the drawer. In iPhone u have to arrange every app u install, u can just move in one way, what u have on front is the same old apps icons, android u have icons, widgets and more.
iPhone has one prop and that is app android has one con that is less apps thats it. everything is editable if u r rooted, u can edit anything u want, u have the source to the platform, u can build one urself, if u know coding u can add everything and anything to it
So Android is gonna have more apps in some time and iPhone will age sooner than intended. Comparing Rooted Android to iPhone is like comparing Gold to Brick. As i already told with ur android being rooted u can add any feature urself by editing directly in the source code, and iPhone u r stuck with Cydia developers who can change how the iPhone OS functions but can only add features
vangrieg said:
Did I miss something or there's nothing about, say, business capabilities - Exchange and Office support? Don't know how to label the post, but here's the question:
On the iPhone, I know there are office package(s) available, but here's what I want to know - how do you transfer files there? Do you get a documents folder or do you need to look for a directory with one of those cryptic names? Also, how does it handle email attachments? Can I save a ppt I receive for later use in the office program?
With regard to Exchange - can I have full support that will include push for Tasks, Email, Calendar and Contacts? Not push for the latter three and manual sync for Tasks?
Click to expand...
Click to collapse
Yes, good point. It must be considered.
What are "business capabilities" though? I think we need to have a good list of what these are. Let start with what you already got and add some to it myself:
- Exchange support (perhaps even MULTIPLE exchange support) for address, calendar, tasks, and email.
- Ability to edit and create office documents with reasonably complete functions in say excel spreadsheet.
- Saving attachments in email, editing them, and resending them out.
- Presence of client applications that works together with enterprise software such as SAP.
- Ability to remote wipe data from lost phones
- Ability to install corporate applications over the air
- Conference call or even video conferencing to substitute face to face meetings
- Printing of documents (e.g. customers require receipts, written quotation, etc)
- Ability to prevent data from physically removed from the phone via MicroSDHC card or alternatively ability to enforce highly reliable data encryption on data stored there.
- Ability to enforce use of password on phone?
- Ability to PREVENT it from becoming so much fun that employees spend all their time on facebook, chats, and games??? (Hence they would prefer RIM phones??)
Anyone else can think of what the corporate IT people might look for in choosing a corporate phone? Or is it more of matter of "the boss loves his iPhone, so we have no choice but to allow it?"
Thanks for this.
charnsingh_online said:
I love how u can do almost anything but nothing in the iPhone, only thing an iPhone drools over is apps and apps and nothing else. iPhone has an edge over android in just apps. For everything else u are crippled
Click to expand...
Click to collapse
Can you comprehensively list in which areas iPhone is crippled? Sometimes people think that a phone can't do certainly thing, but it could be due to lack of awareness and knowledge of the capability. Thats' one of the reason for having this thread - to learn from each other. To get maximum benefit from each other's experience, let's keep our mind open to new information.
charnsingh_online said:
and for anything u want to do u ought to have a computer.
Click to expand...
Click to collapse
Really? This is new to me. I would like to offer a different perspective on this.
I know iPhone lets you install new programs and updates , buy music/video/movies, edit photo taken, compile musics, and make songs of your own, send files to another phone without going through a computer.
There are only three things that strictly requires computer:
a. Install new firmware and perform restore, which is once in a while event that I would rather use my PC anyway in view of how large the file is and how expensive my 3G data quota would cost me.
b. Performing backup and restore. This would also include backing up application data such as that for eWallet, GolfCard, PocketMoney, etc.
c. Syncing to outlook
You may see the need for a computer to do this as a negative, but I personally see that as a positive. Because with this I have the ability to backup my entire device and if my phone requires a restore/hard reset/or replacement, I can recover every applications including the data quickly. It is not practical to do backup of such large amount of data over the air. It is also not assuring from security viewpoint to keep any of your phone data in the cloud. The only place to keep them is your own PC.
charnsingh_online said:
Battery life is not what i would love
Click to expand...
Click to collapse
In terms of length of a single battery, I really do not have any complaint against iPhone. It is more or less the same situation with the other HTC phones which I owned. It varies depending on usage pattern, brightness level, how tempted you are to look at the beautiful screen every 5 minutes, whether you leave location service/bluetooth/3G/wifi running, the strength of the cell signal, etc. Frankly, I think it's hard to say which battery is better due to the difficulties in measurement, different age of the batteries being compared, etc.
The only complain I had was the fact that it's non-replaceable.
charnsingh_online said:
it has a boring interface
Click to expand...
Click to collapse
I assume you're talking about the home page here?
Have you used home page replacement products such as Overboard or Pogoplank? Or themes.
charnsingh_online said:
Android is still immature, one thing u would hate about android is that it updates acc. to devices, it will add a feature only when a device is made to have the feature.
Click to expand...
Click to collapse
I don't quite understand what you mean by "it updates acc. to devices" or "will add a feature only when a device to made to have a feature"- would you mind clarify this point please? Has this got anything to do with the "fragmentation" problem that they talked about?
charnsingh_online said:
other things Android is the most customizable OS ever made in the history of smartphones and mobiles.
Click to expand...
Click to collapse
Would you mind explain in a little more details on what sorts of customization are possible?
charnsingh_online said:
It has a clean interface if u understand it and by far the most efficient in everything it does.
Click to expand...
Click to collapse
How so?
charnsingh_online said:
is a complete OS, it just like a mini computer, to use it u dont need to have a computer, u can do everything on the phone itself, u want to add some music, videos anything do it on the phone itself, u want to update, download do it on the phone itself and it is robust enough to even create websites, i created my website using my android phone and nothing else, Android has endless possibilities.
Click to expand...
Click to collapse
Are you of the impression that adding music, videos, updates, download are not possible on iPhone and that everything has to be done on the PC first?
charnsingh_online said:
u dont have to be tied to computer to do anything on android. U can use anything 3rd party if u dont like stock, 3rd party has the ability to add more stuff which is not in stock. onlu con is that u have no equalizer.
It can play more formats than iPhone, u dont need to convert and sync music, u r not tied to use the default music player. The gallery is the best one around.
Click to expand...
Click to collapse
How is this different from iPhone again?
charnsingh_online said:
Android has the most user friendly interface, what u need most is on the desktop others in the drawer. In iPhone u have to arrange every app u install, u can just move in one way, what u have on front is the same old apps icons, android u have icons, widgets and more.
Click to expand...
Click to collapse
Can you explain in what way it has the most user friendly interface? Here you're talking about the desktop/program launcher. So you said that the frequently used programs can be kept on the desktop along with widgets, etc, and then you can have "drawer" to contain the other programs, right?
Please tell me when you're in the middle of a program and wish to start a new program inside one of the drawers, what is the procedure to start that program. Is it 1)Menu to go to desktop 2) Swipe to the place where drawer is located 3) click on the drawer 4) touch the icon of the drawer?
charnsingh_online said:
iPhone has one prop and that is app android has one con that is less apps thats it. everything is editable if u r rooted, u can edit anything u want, u have the source to the platform, u can build one urself, if u know coding u can add everything and anything to it
Click to expand...
Click to collapse
charnsingh_online said:
As i already told with ur android being rooted u can add any feature urself by editing directly in the source code, and iPhone u r stuck with Cydia developers who can change how the iPhone OS functions but can only add features
Click to expand...
Click to collapse
You may or may not be right here. I don't know the technical aspect of the two platform to judge. However, for the purpose of this thread, as mentioned in post 1, we're only looking at the capability of the phone from the viewpoint of the masses of ordinary users out there, not the OS programmer. So, if you don't mind, I'd skip this. But just for curiosity, do you yourself modify the Android OS now by editing in the source code of Android OS?
charnsingh_online said:
So Android is gonna have more apps in some time and iPhone will age sooner than intended.
Click to expand...
Click to collapse
I hope so. I hope to see TomTom for Android ASAP.

[Q] Can a P/Invoke be used to call native APIs?

Since I'm not strong in C++, is it possible in a native/hybrid app to use a P/Invoke call to call native APIs from C# code?
So far what I have seen is COM interop where you have to code the bulk of what you want to do in native C++.
Any possibility here and if so how?
No. At least not that we know of. You have to create COM wrappers for native functions.
Various Marshaling APIs, which makes P/Invoke tick, are off-limits.
WP7 apps run under silverlight - the best place to learn about the security model and why p/invoke is not possible is here:
http://msdn.microsoft.com/en-us/library/dd470128(v=vs.95).aspx
As you can see the restriction is quite deep routed in the framework.
It still might be possible to run proper .NET CF executables in the future though if we can get it installed.
pInvoke
I just met a guy today, who successfully published WP7 app, that uses pInvoke - he just filled the Technical Exception form and ... done
It's used for muting system volume when the phone is in range of specified WiFi network (using BG agent) - for example when in range of school Wifi, turn the speaker off.
http://www.windowsphone.com/en-US/apps/6813ea1f-8d71-4ad5-a6d2-f80c193c6ac9
Can anybody confirm this actually works? He haven't tested it, because it won't work in emulator and even not in default developer unlock.
Here's the code he used, disassembled from the app:
http://pastebin.com/PfFm9Wxg
Do you know about any other apps, except apps from OEMs and Microsoft, that use pInvoke?
This gave me an idea, what else could be possible using small use of pInvoke? Maybe even something lot of users are asking for, like battery status on the start screen, who knows?
Thread Moved To WP7 Q&A​
This is a development section, not Q&A. Please post in the correct section!​
OK, a few things:
P/Invoke not working is *very* well documented. The DllImport attribute *appears* to be available, but calling a function that uses it invariably fails. The work-around for native code access is to use COM. There's also a project to re-implement DllImport.
Native code access has been available to homebrew developers for about a year, now. There are many apps which use it, ranging from web servers to registery browsers to yes, even an app that shows your battery status as a live tile on your Start screen...
These apps are not, however, permitted by Microsoft's Marketplace rules. It may be possible to get an exemption (some Marketplace apps do use native code) but by default, all apps that try to use native APIs (either via COM or P/Invoke) are automatically detected and rejected during analysis of the app prior to its approval.
As for the code you linked, it doesn't even compile (WP7 doesn't include CharSet.None, apparently). If you remove the CharSet directive, or if you set it to CharSet.Auto, it will compile but fails when used. You also didn't include any of the #using directives (OK, without the # in C#). Better would have been to just send us the XAP directly (yes we can get it, but a copy/pasted smidge is a lot less useful)
Downloaded the XAP. It's a paid app, so many tools won't find it.
Examining now. Nothing exotic so far. Possibly P/Invoke only works on signed apps?
The actual message signature that I see:
[PreserveSig]
[DllImport("coredll.dll", CallingConvention = CallingConvention.Winapi, CharSet = CharSet.Ansi, SetLastError = true)]
private static extern int waveOutGetVolume(IntPtr device, out uint volume);
Note that CharSet.Ansi still doesn't seem to exist. That said, this might simply be due to an outdated interop library that shipped with NoDo, and the Mango one does support this? More investigation...
"Possibly P/Invoke only works on signed apps?"
That's the question! If this actually works, it's possible we can get exception for more pInvoke calls and it might be even possible to certify app in marketplace for showing battery status or similar goodies. It won't be possible using that dllImport project, that's more than sure, but if we use only well defined set of safe pInvoke calls, we might get submission exception. It's definitely worth finding it out, what's possible here

[Bounty]Lenovo Mirage Solo OS Rebuild

Fair warning: I know only mostly what I want, I have no clue how difficult it will be to achieve, and therefor have no idea how to price the work. There are several people interested in this project though, so I'm sure a good budget can be reached.
I have several copies of Lenovo+Google's ill-fated virtual reality headset, which I would like to turn into actually functional devices. The kernel is Android 8 with some additional hooks (I have a copy with the additional required files). I also have one that has developer access of some kind, which may make the process easier.
The primary problems the device needs fixed:
Needs USB File transfer (disabled completely currently)
Needs access to cameras (Especially necessary for AR passthrough)
Needs Task Manager
Needs better widget and notification area systems (Currently, to skip a song on, say, spotify, you have to exit the app you're in, navigate to spotify, switch the song, restart the app you were in. The notifications are also not context aware, so you can't click on one to go to the referenced app)
Support for alternate controllers (basic, such as keyboard or bluetooth PSX)
According to the last person I attempted to hire for this, it would be easier to start from scratch than to implement an altered rom, but I don't think he understood how the 360 virtual environment and camera tracking systems were integrated (not that I do, but I know enough to know that building them out from scratch would be a massive undertaking).
Here is the current road map document, which is still a work in progress.
Any assistance, direction, or paid work would be appreciated, as I've been stumped on where to even begin for over a year.
MOD ACTION:
Thread closed since bounty threads are not allowed on XDA.
@bridgebrain

Categories

Resources