Microsoft Office Coming On Android And IOS

Microsoft Office On Android And IOS

Microsoft Office for iPad images leaked few months ago suggesting that Microsoft Office for iPad could launch soon. The Daily published this information at that time, but Microsoft denied the report but The Daily stood by the report.

Now BGR is reporting that Microsoft is working on both Android and iOS versions of the Office suite. According to BGR Microsoft Office for Android and iOS might launch by November. Office suite hugely popular on the desktops is almost absent on the tablets and smartphones. Apple dominates the tablet market with iPad and it is natural to think that Microsoft doesn�t want to miss this opportunity to put Office on iOS devices. Office has been a cash cow for Microsoft. 



BGR�s source has reportedly seen the iOS version of the Office suite and is identical to the leaked image we have seen before. The loading screen in the app clearly said �Office for iOS� instead of Office for iPad, that means Office for iPhone and iPod devices will also be available along with Office for iPad.

Read Also : 

How to create a folder without any name


Microsoft might think to promote its Office suite on Windows 8 tablets and Windowsphone devices, but Windows 8 tablets are not yet in the market and Windows phone is not a success so far compared to Android and iOS. Android and iOS rule the smartphone and tablet market, so it makes perfect sense that Microsoft might want to release Office for both these platforms.

If at all released Microsoft Office for Android and iOS would be welcome, and coupled with SkyDrive you could access and edit office files on your smartphone and desktop PC and keep them in sync.

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

Sound Recorder in Android Development

This example shows how to record sound and save it to SD card it.
Algorithm:


1.) Create a new project by 

File-> 
New -> 
Android Project name it SoundRecorder.


2.) Write following into main.xml:

<?xml version=“1.0” encoding=“utf-8”?>
<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
    android:layout_width=“fill_parent”
    android:layout_height=“fill_parent”
    android:orientation=“horizontal” >     <Button
        android:id=“@+id/start”
        android:layout_width=“wrap_content”
        android:layout_height=“wrap_content”
        android:text=“Start Recording”
        android:onClick=“startRecording” />
    <Button
        android:id=“@+id/stop”
        android:layout_width=“wrap_content”
        android:layout_height=“wrap_content”
        android:text=“Stop Recording”
        android:enabled=“false”
         android:onClick=“stopRecording”
        />
</LinearLayout>




3.) Write following into manifest file:

<manifest xmlns:android=“http://schemas.android.com/apk/res/android”
    package=“com.example.soundrecorder”
    android:versionCode=“1”
    android:versionName=“1.0” >     <usessdk
        android:minSdkVersion=“8”
        android:targetSdkVersion=“15” />
    <usespermission android:name=“android.permission.WRITE_EXTERNAL_STORAGE”/>
    <usespermission android:name=“android.permission.RECORD_AUDIO” />
 
    <application
        android:icon=“@drawable/ic_launcher”
        android:label=“@string/app_name”
        android:theme=“@style/AppTheme” >
        <activity
            android:name=“.SoundRecorder”
            android:label=“@string/title_activity_sound_recorder” >
            <intentfilter>
                <action android:name=“android.intent.action.MAIN” />
                <category android:name=“android.intent.category.LAUNCHER” />
            </intentfilter>
        </activity>
    </application>
</manifest>

4.) Run for output.
Steps:


1.) Create a project named SoundRecorder and set the information as stated in the image.
Build Target: Android 4.0
Application Name: SoundRecorder
Package Name: com. example. SoundRecorder
Activity Name: SoundRecorder
Min SDK Version: 8


2.) Open SoundRecorder.java file and write following code there:

package com.example.soundrecorder; import java.io.File;
import java.io.IOException;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Intent;
import android.media.MediaRecorder;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
public class SoundRecorder extends Activity {
        MediaRecorder recorder;
        File audiofile = null;
        private static final String TAG =“SoundRecordingActivity”;
        private View startButton;
        private View stopButton;
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
                startButton = findViewById(R.id.start);
                stopButton = findViewById(R.id.stop);
        }
        public void startRecording(View view) throwsIOException {
                startButton.setEnabled(false);
                stopButton.setEnabled(true);
                File sampleDir =Environment.getExternalStorageDirectory();
                try {
                        audiofile =File.createTempFile(“sound”“.3gp”, sampleDir);
                } catch (IOException e) {
                        Log.e(TAG, “sdcard access error”);
                        return;
                }
                recorder = new MediaRecorder();
                recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
                recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
                recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
                recorder.setOutputFile(audiofile.getAbsolutePath());
                recorder.prepare();
                recorder.start();
        }
        public void stopRecording(View view) {
                startButton.setEnabled(true);
                stopButton.setEnabled(false);
                recorder.stop();
                recorder.release();
                addRecordingToMediaLibrary();
        }
        protected void addRecordingToMediaLibrary() {
                ContentValues values = new ContentValues(4);
                long current = System.currentTimeMillis();
                values.put(MediaStore.Audio.Media.TITLE,“audio” + audiofile.getName());
                values.put(MediaStore.Audio.Media.DATE_ADDED(int) (current/ 1000));
                values.put(MediaStore.Audio.Media.MIME_TYPE,“audio/3gpp”);
                values.put(MediaStore.Audio.Media.DATA, audiofile.getAbsolutePath());
                ContentResolver contentResolver =getContentResolver();
                Uri base =MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
                Uri newUri = contentResolver.insert(base, values);
                sendBroadcast(newIntent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, newUri));
                Toast.makeText(this“Added File “ + newUri, Toast.LENGTH_LONG).show();
        }
}

3.) Compile and build the project.
Output



Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

HOW TO INSTAL ECLIPSSE IN EASY MANER FOR ANDROID

download eclipse from internet and it will be contain one floder . in that eclipse icon is there click that eclicplse will be run.
note:you need to be instal java


it will ask folder to set output u need set location
after that eclipse will be run



>windows

>propeties
>android
>browse sdk files .
or 
>download fro net .


now go to 
>AVDMANGER
>CREATE NEW AVD
>give name and size 6
>emultor will run.

Read also : NAVDROYD 1.4.0 Offline GPS Navigation Software for Android

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

Next Android OS After Jelly Bean

Google has released its latest Android OS Jelly Bean on June 16 in this year. Now everyone is looking for the next Android OS after Jelly Bean, now the question is “Whats the code name(Nick name) for next Android Operating System”?

Since naming convention follows an alphabetical order, everyone knows the name will start with ‘k’. Besides the the name convention, In the Android history all the updates comes with a dessert related tittle, it follows the updates from Cup Cake 1.5 to current Jelly Bean 4.1 (see Android history). So what will they name for it??

The running guess is that the next android OS will be Key Lime Pie(KLP) after Jelly Bean , another dessert item. Have you heard of Key Lime Pie before? Actually I haven’t heard of, but I likes the name. Well, it would be the first pie joining in the Android history. You can keep guessing some other desserts start with ‘K’ and let us know it by comments.

Then what will be the features of Key Lime Pie? Will it be a major update to 5.0 or a minor update from Jelly Bean? What is the release date for Key Lime Pie? Google has announced nothing officially  about their next OS release. No detail yet on the release date and version. Although, the next update assumed to be released in late next year(2013) with strong features .

If you know something more about the next Android OS release and features share your opinion with us in the comments below.

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

Top Of i Phone Apps For Women


Modern women have so many duties to cope with. They work, take care of children and household, do shopping, do different payments and many more. Modern women have so many duties to cope with. They work, take care of children and household, do shopping, do different payments and many more. And every woman wants to have an easier life, to do everything faster and more efficient just to have more time.
Happily, current mobile application development provides women with the tools that can make their lives much easier.  And these tools are named applications.

According to the latest researches, women (31%) in the US prefer to buy iPhones (even despite its �man� design) and that�s why the following list of the most important iOS apps for women is so topical.
  • Shopper. The best applications for everyone. It has the full range of functionalities that you may need when you are at shopping. Everything you can think about is there (list making, price checking and comparison, and many more). The price of 0.99$ is nothing comparing with what you get
  • Dinner Spinner Pro App. It is an app that has a direct access to allrecipes.com resource. The applications allows you to choose a new dish to cook, to make an auto shopping list for the recipes selected, to share these lists via email, Twitter, Facebook, etc. with your friends, etc.
  • The Grocery Gadget. It is a multifunctional application that can make a shopping list, read barcodes, sync your lists to other person�s device, etc. It works really fast, but requires iOS 4.2 or later.
  • The Woman�s Day Cooking Assistant. You don�t know what you can cook using the things in your fridge? This very application can help you. Just enter the food you have and it will give you possible variants.
  • After making a dinner and doing shopping, you any woman will think about fitness and body training. There are two great iPhone applications for this � iBody (a great helper in your trainings that can trace your weight, blood pressure, body fat index, cholesterol, and it even can be your GPS tracker if you�re a jogger) and MyFitnessPal (it may help to trace your daily meals, calories you get, to your exercises, and it may suggest you some healthy recipes).
  • Alarmed. Do you need any notification? To take meds? To make a call? To visit a friend? This application with simple design and management will let your now.
  • Can a list of woman apps be full without any �woman calendar� app? I don�t think so. Woman�s Calendar is an woman application that makesa track of fertility cycles. But it also may work as a kind of medical calendar tracking any health information.
  • Stylish Girl app. What woman doesn�t want to have a new dress?The direct integration with shopstyle.com will let any woman to choose the new clothing, shoes, accessories, etc. even without visiting a real shop. Besides, the app has some functions of putting together the current wardrobe and the things that you want to buy. Very convenient.Of course, the application has social media share function and you may ask your friends what they think about this or that thing.
  • Different things happen in this life and you never know when you will need any first aid skills. That�s why Pocket First Aid is a musthave application. It will give you instructions in case of poisoning, choking or any kind of injure. The application is very helpful, especially if you are a mother of a small kid.

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com