Pages

Monday, June 9, 2014

My DayDream Android App

Want to get useful information while your Android mobile is getting charged or in dock mode? Or are you board of the old type of clock that shown when your mobile is getting charged?

Install the My DayDream app on your Android mobile that will show you useful information while your mobile is getting charged...

My DayDream Features

This app will show you below information on your mobile.
  • Missed call count
  • Unread SMS count
  • Next alarm
  • Current time
  • Internet connectivity status
  • Battery percentage 
My DayDream
While mobile is getting charged

You don't need to touch your mobile screen to see all the above information. Just set My DayDream as a daydream service and relax. To set My DayDream as a dream service go to Settings -> Display -> DayDream -> My DayDream.

  

You can set your name and also enable/disable notification by going into My DayDream Settings.

https://play.google.com/store/apps/details?id=com.sign.mydreamservice.app
Configuration for DayDream

Click here
to download My DayDream app for your Android Mobile...


Thursday, May 22, 2014

Mobile Internet Data Timer Android App (Smart way to use mobile internet)


Do you have limited internet data pack?

Are you running out of mobile internet data every month?

Here is the way to use your mobile data smartly...
Data Timer for Android

This app will help you to save your internet data, battery life, time and money by automatically turning on and off your mobile data at given time.

Features:
  • Automatic turning on/off mobile data at given time.
  • Periodic mobile data on and off.
  • Mobile data can be turned off automatically on given date. Generally we set last date of our mobile data internet pack.
  • Mobile data can be turned off automatically at given battery level.
  • Notification shown when mobile data turning on/off by this app.
  • One touch mobile data on/off button.

Benefits:

  • Save mobile data bytes.
  • Periodic mobile data on and off sets you free, by delivering updates on certain interval.
  • Save battery life.
  • Save money as it saves mobile data bytes.
  • You can have sound sleep at night by not getting disturbed by your mobile.
Click here to download free version of this app.

Data Timer
Dashboard
Data Timer
Set Time
Data Timer
Set Date
Data Timer
Set Periodic Interval for Internet
https://play.google.com/store/apps/details?id=com.sign.datasaverpro.app
Help

Data Timer Android
Notifications



Note: All the operations performed by this app are with primary SIM card only, so if you use dual SIM mobile make sure that the SIM with active data pack is in primary SIM slot.

Download Data Timer Now (Free)

Tuesday, March 18, 2014

DayDream feature of Android 4.2+


Dreams are new features of Android 4.2+ version. They are interactive screensavers launched when a charging device is idle, or docked in a desk dock. Dreams provide another modality for apps to express themselves, tailored for an exhibition/lean-back experience.

We can develope a dream for Daydream by simply implementing a subclass of DreamService. The DreamService APIs are much more similar to those of Activity

For developing your own daydream feature, we have to create One java class that extends DreamService and make entry in AndroidManifest.xml file about Dream service.

Step 1:
Create a simple Android project from your IDE.

Step 2:

 package com.sign.mydaydream;  
 import android.service.dreams.DreamService;   
 import android.graphics.Color;  
 import android.widget.TextView;  
 public class MyDayDreamService extends DreamService {  
   @Override  
   public void onAttachedToWindow() {  
           super.onAttachedToWindow();  
     /*  
        * Allow user to touch while dreaming to make it interactive.  
           */  
     setInteractive(true);  
     /*  
        * Hide the notification bar to run it in full screen.  
           */  
     setFullscreen(true);  
     /*  
     * You can either give any layout id to display as daydream or   
           * build UI for daydream by yourself.  
     */            
     TextView tView = new TextView(this);  
     tView.setText("Hello DayDream by Sanket Shah!");  
     tView.setTextColor(Color.rgb(144, 225, 220));  
     tView.setTextSize(50);  
     // Setting a view for daydream screen  
        setContentView(tView);  
   }  
 }  

Now, the second step is to make entry in AndroidManifest.xml file.

Step 3:


     android:name=".MyDayDreamService"
     android:exported="true"
     android:label="My Day Dream" >
     
        android:name="android.service.dreams.DreamService" />
        android:name="android.intent.category.DEFAULT" />
     


That's it! Now install your application on your Android device.
You can find your daydream under Settings -> Display -> DayDream menu.

You can also provide setting for your daydream for let user customize the dream like changing font color, screen brightness, etc. For providing setting button beside your daydream you need to add metadata tag to your AndroidManifest.xml file where we declare the daydream service in Step 3.

Note: While creating the daydream simply create a Activity for developing UI. This way you can easily test your daydream UI during development.