IT tutorials
 
Mobile
 
Change page: < 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 >  |  Displaying page 12 of 16, items 331 to 360 of 453.
Samsung Galaxy Beam - Big Screen In Your Pocket
When the first Beam was introduced, it was criticized for being overly bulky and clunky. The пеw Beam seeks to address this issue with а smaller body. However, at 12.5mm thick апd 145g in weight, it's still thicker and heavier than most modern smartphones, given the built-in projector hardware that must be squeezed in.
Sony Xperia lon - The Biggest Brother Of Them All
The Sony Xperia lon was first unveiled seven months ago at CES 2012 as an LTE-based exclusive to АТ& т in the United States. Sony since added а HSPA variant, which is the focus of this review.
How – To Mobility : Setting Up Chrome For Mobile
Spend an inordinate amount of time surfing on your PC at home and want to replicate the experience on your smartphone or tablet? In this article, we take a quick look at how you can enable a uniform browsing experience via the Chrome web browser, across your desktop, laptop and mobile device.
iphone 3D Programming : Optimizing Animation with Vertex Skinning (part 2)
All Apple devices at the time of this writing support the GL_OES_matrix_palette extension under OpenGL ES 1.1. As you’ll soon see, it works in a manner quite similar to the OpenGL ES 2.0 method previously discussed. The tricky part is that it imposes limits on the number of so-called vertex units and palette matrices.
iphone 3D Programming : Optimizing Animation with Vertex Skinning (part 1)
The main idea behind GPU-based skinning is that you need not change your vertex buffer during animation; the only data that gets sent to the GPU is a new list of model-view matrices.
Windows Phone 7 : Using the MediaElement Control to Play Both Music and Video
Within the Silverlight for Windows Phone 7 controls library is the MediaElement control, which enables us to reproduce music and video available from remote sites and local resources.
Windows Phone 7 : User Interface - Using Launchers and Choosers
Windows Phone 7 applications have their own private storage and cannot interact with other applications installed on the phone. In some cases, you need to perform a particular task in your application that requires use of existing Windows Phone applications.
jQuery 1.3 : Simple events - A simple style switcher & Shorthand events
To illustrate some event handling techniques, suppose we wish to have a single page rendered in several different styles based on user input. We will allow the user to click buttons to toggle between a normal view, a view in which the text is constrained to a narrow column, and a view with large print for the content area.
jQuery 1.3 : Events - Performing tasks on page load
The window.onload event fires when a document is completely downloaded to the browser. This means that every element on the page is ready to be manipulated by JavaScript, which is a boon for writing featureful code without worrying about load order.
iPhone Application Development : Creating Rotatable and Resizable Interfaces with Interface Builder
As you’ve grown more experienced building iPhone applications, you’ve gotten accustomed to using the Interface Builder Inspectors. The Attributes and Connections Inspectors have been extremely valuable in configuring the appearance and functionality of your application.
iPhone Application Development : Rotatable and Resizable Interfaces
Apple has implemented a screen-locking function in iOS 4 so that users can lock the screen in portrait orientation without it changing if the device rotates.
Mapping Well-Known Patterns onto Symbian OS : Handle–Body
This pattern supports and encourages encapsulation and loose coupling by hiding the implementation details from your clients by dividing one class into two. The first of these, the handle, simply defines the interface and then defers all implementation of that interface to the body.
Mapping Well-Known Patterns onto Symbian OS : Adapter
This pattern decouples interfaces by creating an intermediary class, called the adapter, whose purpose is to adapt the interface presented by one class, the adapter, and present the interface, known as the target, expected by another class, the client, that wants to use the adapter.
Mobile Web Apps : Loading Pages (part 3) - Going Backwards
The user is now looking at a page of details about some crazy celebrity, and they’re bored. They want a new crazy celebrity to read about, so they go looking for the Back button. But going back is more than just swapping the source and destination pages again, because the animations we applied need to be reversed: the old page needs to slide back from the left into view.
Mobile Web Apps : Loading Pages (part 2) - Sliding
Creating a slide or “push” transition is very easy now that we’ve learned to fade—we just need to update our CSS animations. To perform a push, we need to animate the current page off the screen to the left while simultaneously moving the new page in from the right.
Mobile Web Apps : Loading Pages (part 1) - Swapping Pages & Fading with WebKit Animations
After the original iPhone was released, web developers leapt to re-implement the native transition effects in JavaScript, but the results were less than ideal, often containing lags and jumps that were very noticeable and distracting to users.
Personalize & Secure Your iPad : Adjusting Sounds on your iPad & Personalize Your Picture Frame
You may want the wallpaper for your Lock Screen to be less personal than your Home Screen wallpaper. For example, you might choose to put a generic landscape image on your Lock Screen and a picture of a loved one on your Home Screen.
Personalize & Secure Your iPad : Changing your Lock Screen and Home Screen Wallpapers
You may want the wallpaper for your Lock Screen to be less personal than your Home Screen wallpaper. For example, you might choose to put a generic landscape image on your Lock Screen and a picture of a loved one on your Home Screen.
Using Media in XNA Game Studio : Media Enumeration
Shipping music with your game is great, but what if you want to use the media library that already exists on the user’s machine? There are quite a few games out there that let the user pick music from his or her own library while playing. Naturally, this functionality is included in XNA Game Studio.
Using Media in XNA Game Studio : What Is Media?
When “media” is discussed in the context of XNA Game Studio, it means video, songs, or enumeration of items in your media library, including pictures, album art, songs, and so on.
Android Application Development : Layouts (part 2) - AbsoluteLayout & RelativeLayout
We’ve used RelativeLayout, often in combination with LinearLayout, throughout the MJAndroid application. The advantage of RelativeLayout is that you can express the relative positioning of the Views in the screen, and the layout manager will do its best to fit them all on the screen in the proper relations.
Android Application Development : Layouts (part 1) - inearLayout
LinearLayouts are used extensively in Android applications, and we used them in example code earlier. A LinearLayout asks that the contained Views be layed out as either a series of rows (vertical LinearLayout) or a series of columns (horizontal LinearLayout).
Building an Advanced Java Game on Symbian OS (part 4) - Using the Bluetooth API
The Bluetooth code included in our sample game has been taken directly from Forum Nokia. The main changes we have introduced are the use of an observer class and simplification of the code to support only two players.
Building an Advanced Java Game on Symbian OS (part 3) - Using the Mobile 3D Graphics API
JSR-184, also referred to as M3G, allows developers to load and animate 3D assets with very few lines of code. Unlike many other 3D graphics libraries (such as OpenGL and DirectX), M3G supports two programming models which can be freely mixed together
Building an Advanced Java Game on Symbian OS (part 2) - Using the Mobile Media API & Using the Scalable 2D Vector Graphics API
More importantly, as we see in this section, you can adopt a more abstract framework for your code base which translates directly into a high degree of re-usability. There is no need to use the extreme Java ME optimization techniques that are needed on low-end platforms.
Building an Advanced Java Game on Symbian OS (part 1)
More importantly, as we see in this section, you can adopt a more abstract framework for your code base which translates directly into a high degree of re-usability. There is no need to use the extreme Java ME optimization techniques that are needed on low-end platforms.
jQuery 1.3 : Simultaneous versus queued effects (part 2) - Working with multiple sets of elements & Callbacks
Unlike with a single set of elements, when we apply effects to different sets, they occur at virtually the same time. To see these simultaneous effects in action, we'll slide one paragraph down while sliding another paragraph up.
jQuery 1.3 : Simultaneous versus queued effects (part 1) - Working with a single set of elements
When applying multiple effects to the same set of elements, queuing is easily achieved by chaining those effects. To demonstrate this queuing, we'll again move the Text Size box to the right, increase its height and increase its border width.
iPhone 3D Programming : Crisper Text with Distance Fields (part 3) - Implementing Outline, Glow, and Shadow Effects
The shadow effect in Example 4 deserves further explanation. It applies anti-aliasing to the transition not only between the vector and the background but also between the shadow and the background and between the vector and the shadow.
iPhone 3D Programming : Crisper Text with Distance Fields (part 2) - Smoothing and Derivatives
To see how smoothstep comes in handy for smoothing, visualize two new boundary lines in the distance field: one at edge0 (a deflated version of the glyph), the other at edge1 (an inflated version of the glyph).
 
 
Top 10
 
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
Technology FAQ
- Is possible to just to use a wireless router to extend wireless access to wireless access points?
- Ruby - Insert Struct to MySql
- how to find my Symantec pcAnywhere serial number
- About direct X / Open GL issue
- How to determine eclipse version?
- What SAN cert Exchange 2010 for UM, OA?
- How do I populate a SQL Express table from Excel file?
- code for express check out with Paypal.
- Problem with Templated User Control
- ShellExecute SW_HIDE
programming4us programming4us