Wednesday, January 4, 2012

Samsung Omnia 7 - With 4” Super AMOLED Capacitive Touchscreen

0 comments
Your Samsung Omnia 7 will be the 1st device through the company for you to attribute the modern 'microsoft'  windows phone 7 main system. And also the software package, the idea provides many extraordinary essential capabilities say for example a 5 ultra pixel digicam, several inches touchscreen display screen along with tons of interior hard drive.
            Your device procedures 122. 4x 64. 2x 11 millimeters even though analyzing throughout in 138. only two h. Granted their sizes, this can be reasonably light and portable along with surely slimline so that it is a snug mobile phone to support along with employ and intensely bank account warm and friendly. Your sizes in the mobile phone along with you happen to be throughout zero smaller element on the enormous several inches excellent AMOLED capacitive touchscreen display screen which in turn really does a terrific employment involving presenting videos along with video clips and also delivering a terrific podium pertaining to games along with surfing around the world wide web due to their capacity to screen approximately 07 trillion hues in a pixel construction involving 480x 900. What's more, it incorporates the common accelerometer along with area detectors along with multi-touch insight assist there exists widespread of all Touch screen phones currently.
            Your Samsung Omnia 7 is doing out while using typically witnessed microSD video slot, due to their good fully briefed recollection involving sometimes 07 GB as well as 8 GB according to the style. For that reason, perhaps principle device which consists of 8 GB makes it possible for consumers for you to keep shell out great deal involving data from the device always be that they tunes songs, online video data, papers as well as delivered electronically software and many others.
            Consumers could consume a rapid Net surfing around expertise due to the HSDPA interconnection which offers data transfer rates up to 7. only two Mbps throughout parts included in about three H, which in turn in addition performs with HSUPA in 5. seventy six Mbps. A new more rapidly plus much more useful Connection to the internet might be founded on the other hand, every time consumers have community instant Net routers, by which Wi-Fi on the web connectivity might be used. Bluetooth along with tiny USB internet connections are involved to hold your device associated with various other agreeable units by which many responsibilities can be executed even though border along with GPRS present entry to the proper cell phone cpa networks.
            Your Samsung Omnia 7 has a new 5 ultra pixel photographic camera and that is competent at having fantastic good quality even now photographs due to their substantial functioning pixel solution as well as references including Autofocus, BROUGHT ABOUT thumb, impression stabilisation and in many cases geo-tagging, your second item of which characteristics due to Navigation along with makes it possible for consumers for you to monitor wherever that they needed his or her images as well as picture generally there video clips. Your digicam could throw video footage throughout 720p high-definition rather than having even now photographs. 'microsoft'  windows phone 7 will be the main system of preference, along with in addition to a highly effective 1 GHz Qualcomm Snapdragon brand comes with a amazing individual expertise due to their lightning rapid result periods, this means many methods from your functioning your touchscreen technology to observe inside videos along with getting referrals can be really sensitive using almost actually zero lag occasion.
            Due to their 'microsoft' OS, your device has an 'microsoft' Place of work file viewer/editor even though what's more, it athletics along with advertising gamer, r / c gamer, pre-installed online games along with online community integration and also assist for assorted distinct messaging forms including SMS, MMS, E mail, force E mail along with IM.
            Your Samsung Omnia 7 is often a exclusive Touch screen phone throughout the belief that it is just a jack port coming from all positions, nevertheless manages just about any activity anyone put in the idea without difficulty. The idea clicks the many packing containers, granted their significant touchscreen display screen, adequate interior hard drive along with highly effective software package. This specific can make it the perfect Touch screen phone for the people in search of a new go transforming a different for you to well-known Touch screen phone types.

Continue reading →

How To Using Isolated Storage In Windows Phone 7

0 comments

Isolated storage is a local storage that can be used for Windows Phone application data storage needs. When an application is running, it works with a number of data, some of which is temporary and only required for certain sessions, therefore storing them will not be necessary. This is where isolated storage comes in handy.
The whole IO operation has to use IsolatedStorage and for security reasons applications cannot access operating system storage and other application’s space. The figure below shows the storage structure in Windows Phone applications.
Using Isolated Storage In Windows Phone 7
There are two parts of storage, which are standard file folder and a particular folder to store application settings.
We should put into account that storage space in mobile devices is very limited. However Windows Phone does not give quota to applications in order to provide high flexibility for developers. Nevertheless, as a developer we should consider the space storage usage responsibly. Every temporary file should immediately be deleted, and users should be given the liberty to delete what they store.
It would be better to give transparency to users, letting them know how much space is used in the mobile device. We can also consider the option of storing in cloud storage, whether it’s in our own application server or in a third party server. Make sure applications on device are thin, making them comfortable to use. Would users use applications that take up a lot of space in their mobile device? That’s how smart phones lose their smartness :)

Isolated Storage For Files

If you continue from the previously made project, then we need a new page to learn about isolated storage, but if you don’t, create a new project for this matter. If you have learnt everything up to this page that should be relatively easy to do.
1 – Right click on Project, Add New Item and select Windows Phone Portrait Page. Rename the file as you like, in this example it’s called IsolatedStorage.xaml, then choose Add.
Isolated Storage For Files
2 – Insert a Button and a TextBox. Click event button will later be set so that it will store the string inside the TextBox into isolated storage.
Isolated Storage For Files
3 – Next, insert a TextBlock and a Button. By clicking the second button, we will call any string stored in isolated storage.
Isolated Storage For Files
4 – Now double click on the first button to handle storing data into isolated storage. Add these namespaces:
Isolated Storage For Files
And type in the following code:
Isolated Storage For Files
What the above code does is calling an application specific isolated storage then creates a folder called Data. The folder creation is meant for data organization simplicity. The code on the next line creates a stream writer with an isolated storage file as an input then stores the value from textBox1. Pretty straightforward.
5 – Next, double click on the second button to handle loading data from isolatedstorage. Type in the code below:
Isolated Storage For Files
6 – Press F5 and let’s see how the application works.
Isolated Storage For Files

Isolated Storage For Application Setting

Some applications have the need to store user inputs to be used later when the application is restarted. This scenario is useful for data such as user preferences, URL, or common information. Like other .NET applications, Window Phone also supports application setting storage. For this purpose we can useIsolatedStorageSettings.ApplicationSettings. Application Setting itself is an instance of IEnumerable.
1 – There is no need for a new page, let’s just continue from IsolatedStorage.xaml for this purpose. On the first button’s event handler, change the code into the following:
Isolated Storage For Application Setting
The code above is pretty straightforward: we call for an instance of ApplicationSetting, insert a value and a key then store it.
2 – On the second button’s event handler, change the code into the following:
Isolated Storage For Application Setting
The code above will call an instance of ApplicationSetting, try to fetch the value of duration, and display it with a MessageBox.
3 – Press F5 for results.
Isolated Storage For Application Setting
Press the first button to store the application’s setting. Nothing seems to happen, but do believe that the setting has been saved. To prove this, press the second button. A MessageBox will appear, showing the value stored in the application’s setting.
To delete the setting, it is also quite simple.
Isolated Storage For Application Setting

Continue reading →