Android :: Ideas Of Apps That Helpful In Daily Life / Achieve Society?

Oct 12, 2010

I am preparing to program an useful application, I would like to collect your ideas.

Any new ideas of apps that helpful in daily life, even achieve the society?

Android :: Ideas of apps that helpful in daily life / achieve society?


Sprint HTC Hero :: Android Dictionary Find As Helpful Resource

Aug 1, 2010

Thought you all might find this to be a helpful resource.

View 1 Replies View Related

Android :: Getting Around Port 25 Blocking Ideas?

Dec 30, 2009

I'm trying to use the Mail client on my Hero to send emails, but it seems that Three is blocking port 25. I've asked my hosting company if they can allow me to use port 587, but in the meantime, does anybody know of how else I can send email from my Hero?

View 3 Replies View Related

Android :: Ideas For Securty Project

Sep 18, 2010

I am a student taking a course in Network security.As a part of my coursework I need to do a project on the security side of Android like developing a simple application which involves basic security concepts.I searched for different ideas which I can implement on Android within a span of 2-3 weeks.I found ideas such as secure sms or mobile antivirus or mobile finder.I am a beginner with the Android development and thus I might require more time to develop these apps(Maybe a month)Can anyone please suggest some ideas for simple security apps which I can develop within 2-3 weeks?

View 1 Replies View Related

Android :: Ideas With Icons & Customization

Dec 14, 2009

I really like having a clean homescreen and I don't really like having to navigate far for my most used apps.On my main screen I have the Beautiful Widgets Flip clock and weather widget, the one that takes up two rows.And as I said, I like things clean, so I'd like to be able to see my background so I don't want to clutter the space with icons.So what would be the best way to make, clear, or near transparent icons for my apps? I thought about Better Cut, but still I need the actual pictures of my apps to like photoshop them. Any ideas on how to come up with them?Is there anything I can find on my phone or get the icons off my phone?

View 3 Replies View Related

Android :: Automotive Related Project Ideas

Oct 8, 2010

Can any one help me by providing some innovative automobile(car) related projects.

View 6 Replies View Related

Android :: Creative Ideas For Stopping Email Spam?

Oct 19, 2010

I'm trying to help someone who'd like a way to stop email spam from reaching his Android phone. I understand this is usually best done from the email server side of things, but this is where we are right now. This is regarding his work email, and I've suggested that he have gmail fetch it for him so they can filter it (does this work for fetching? I know it works great for emails sent directly to gmail), alas, he says he only has an imap server and no Pop3 server for gmail to fetch. I looked in the market and found only one not terribly highly rated app for filtering email spam on Android phones. If you've tried that email filtering app, it worked?

View 11 Replies View Related

Games :: Touchscreen Input Ideas

Jan 26, 2010

This is my first post and an aspiring programmer (I guess you can call me that) I want to know what type of input would be the best for a 2d game using only the touchscreen? I want to know from a gamer's point of view. I want to know if the buttons mapped on the screen is more user friendly or that "Point and click" type of input like what you would do with a mouse but touching instead? Or something dramatic with the multi touch that some devices have, but that limits the audience to a couple devices.People may argue an all touch screen input is a terrible Idea, but look at all the Android devices, most if not all have touchscreen and some ONLY have touch screen. So I would like to reach the majority of the audience.

View 4 Replies View Related

Motorola Droid :: Case Ideas Besidies Seidio?

Apr 14, 2010

So far I have been quite unhappy with my Seidio Innocase for my droid. I have the Sapphire blue case, but have gone through about 5 of them through RMA's. My top half of the case always seems to progresively get looser and looser has time goes on. They have shipped me brand new cases that are supposed to fit better then the old ones. They always start off nice and tight, but slowly get looser and looser. Anyone else having trouble with this? Im tempted now to completely return it all together because RMA's are a real pain.So anyone have any suggestions for a different case that they love for their phone? I have tried the plastic hard shells from Verizon but those were terrible, other then that I am open to suggestions.

View 16 Replies View Related

Android :: What Apps Actually Drain Battery Life?

Jun 9, 2010

What apps actually drain battery life?Im curious about the gmail and regular mail, and ECOBUZZ app?What's the best app I can download that will tell how much power an app is using?

View 5 Replies View Related

Android :: Implement AIDL For A Service To Run Outside Of Your Apps Life?

Nov 9, 2010

I have a service that will send out notifications with timed tasks. I need this service to run outside the life of the application, but I only need to access the services functions during the lifespan of the app. Is a local service enough or do I need to implement AIDL?

View 2 Replies View Related

Android :: Apps To Use To Monitor Your Battery Life And Device Usage

Sep 12, 2010

This is NOT a "my battery life sucks" thread, i'm just wondering what apps everyone uses to monitor their battery life and device usage.

I'm currently using:

Default Settings > Battery > Battery Use
Spare Parts
System Panel
Battery Graph

View 8 Replies View Related

Android :: Top 5 Apps For Huawei Ascend / Especially One That Well Save Battery Life?

Nov 23, 2010

I want to know what are the most helpful and useful app for my huawei ascend especially one that well save my battery life or help my battery last longer or something similar.

View 1 Replies View Related

Android :: Achieve Folder By Polling?

Jul 11, 2010

Is it possible to do polling in Android? For example, I want my application to monitor a directory continuously. If there is for example a new folder created in that directory I want to log it down. Is it possible to acheive this by polling? Or is there any other way to do this?

View 7 Replies View Related

Android :: Web View User Clicks On Particular Url - How Can I Achieve This?

Jun 24, 2009

I have a webview and need to trigger a function when a user clicks on particular url. How can I achieve this?

View 5 Replies View Related

Android :: Application-wide Resources / How To Achieve?

Sep 17, 2010

So I'm struggling a bit with what is probably a fairly basic concept.. Activity Lifecycle.I have read a bunch of thread on the topic, and I feel I understand well both the functionality, and rationale behind the lifecycle model implemented for Activities, but it raises a bit of a problem for me. My app (game) has a couple of distinct Activities for various sections:

1. The TitleActivity is a very small Activity that just launches a GLSurfaceView and renders a startup logo.I use this to detect the OpenGL capabilities of the device (eg so I know if it's using a software renderer)

2. The LaunchActivity is the main menu screen where the user can access options etc and start a game

3. The GameActivity will either launches a GLSurfaceView or a standard View depending on hardware capabilties.

The issue I am having is that I want to pre-load some "slow-to-load" resources, specifically audio, in the Title Activity so when the Launch Activity renders I can play some background music.I have the concept of a "media library" which I use throughout the game.Because of memory limitations in the SoundPool, I have limited this to only absolute real-time sounds and all others are played using mulitple instances of MediaPlayer.Hence my media library has a bunch of pre-loaded MediaPlayer instances which I access regularly during game play.. so it makes sense to have a centralized access point for all audio.All fine, however the problem is that when I launch one activity from another.. for example the TitleActivity starts the LaunchActivity (via a call to startActivity(Intent...)), the former goes through the onDestroy stage of its lifecycle.Now logically I had assumed that if I allocate a bunch of resources in the onCreate of an Activity, I should clean them up in the onDestroy, however in the case of my "media library" if I load up the audio files in the onCreate of my TitleActivity they will be torn down when the LaunchActivity is started because the TitleActivity will have its onDestroy() method called.

View 9 Replies View Related

Android :: Way To Achieve Listview From Multiple Tables?

Aug 22, 2010

I'd like to populate a listview from 2 tables. Anyone know how I can achieve this? Currently what I have looks like but it only works with one adapter.

View 1 Replies View Related

Android :: Obtain Endless Views / Can I Achieve

Oct 26, 2009

I am developing an application in which a user keeps on scrolling and each view displays a single text. The views are not suppose to end. How can i achieve that?

View 4 Replies View Related

Android :: Achieve Droid Project's Internationalization?

May 28, 2009

I want to make my android project Internationalization,but i don't know how to achieve it. I have searched on the internet,and just know i have to make values-xx file in
es.I want to know what should i do about the code.

View 2 Replies View Related

Android : How To Achieve Logging Inside Framework?

Oct 8, 2010

I am trying to develop small application for reset Logging on Phone. Can some one throw some Lights on how to achieve logging in AndriodRunTimeInit whenever there is exception? I want to write into file whenever there is RunTime exception.

View 1 Replies View Related

Android : Achieve Perspective Drawing Of An Image

Jul 15, 2009

Is there any way to achieve perspective drawing of an image.. are there any APIs.. or is OpenGL the only solution..

View 2 Replies View Related

Android : Achieve Mixed Layout With ListView?

Apr 19, 2010

Things go fine, and i am able to design a layout like this...

View 3 Replies View Related

Android :: Achieve Ultra Smooth OpenGL/ES Animation

Feb 1, 2010

I am drawing a pretty simple scene, with one large texture the about size of the screen (two triangles). I notice that the frame-rate is irregular: in most of cases, a frame finishes in 17 ms. However, in about 1 of 10 times, the frame finishes in 33ms.

My guess is probably some background services need to run. However, the Linux scheduler is biased towards my FG app, so the BG services are usually starved, until they can't take it anymore and they grab the CPU from my app ....

I am seeing stuttering in the animation. Is this due to the irregular frame rate? Should I delay each frame so that all frames are rendered with 33ms frame time? If so, what's the best technique of achieving this?

Is there an API that I can call to guarantee CPU resources for the render thread .... I really hope Android runs on some sort of real time kernel ...

View 7 Replies View Related

Android :: Achieve Smooth - Hw Accelerated - Transitions In Browser

Jul 5, 2010

On iPhone, Mobile Safari is WebKit based and supports hardware-accelerated -webkit-transform CSS properties. To be specific, I use the translate3d() transform.

What alternative is there for the Android browser? I need it to work on Android 1.5.

View 1 Replies View Related

Android :: Achieve Square Layout And Buttons In Main.xml?

Oct 30, 2010

I would like to have a layout with 5 times 5 buttons. Each of them should have the same width and height (they should be square). And I want the whole matrix to use the screen width (or height, depending on rotation).

I currently do it "by hand" in the Java code:

CODE:...........

This can be improved by obtaining screen width first and then dividing by 5 to get rid of this literal 60. But I'm wondering how I can do this in the res/layout XML file? How can I specify for the height to be the same as the width? (I can set the width to match_parent.)

View 4 Replies View Related

Android :: Want To Change Position Of Toast In Droid / Achieve This?

Mar 24, 2010

When i use toast to display some text on screen it displays little bit above the bottom(default position).

now i want to display it in the middle of screen or according to my choice can any one guide me how to achieve this?

View 1 Replies View Related

Android :: Achieve True Gapless Playback - Can't Seem To Improve

Jan 30, 2009

When using a mediaplayer to play back an audio file, you can set looping to true - that's not the issue here.

If looping is set to true, there's still an audible gap between the file finishing and then starting again.

How could I achieve true gapless playback? I've attempted using two instances of the same file, overriding oncomplete and onseek.. can't seem to improve the gap though.

View 6 Replies View Related

Motorola Droid :: GPS Apps And Battery Life

Apr 22, 2010

I'm going on a hike this weekend and thought it'd be a good time to test out either Google Tracks or CardioTrainer to see elevation gain, time, speed, etc. The hike should last about 4 hours. How will my battery hold up with the GPS on the whole time? Assuming these apps have the GPS constantly draining the battery, which I imagine they do.

View 3 Replies View Related

LG Ally :: Apps For Long Battery Life

Oct 12, 2010

How long does your battery last? Mine dies out pretty quickly. Are there any apps or anything that can make it last longer? And is it just my phone(LG ALLY)? Thank you

View 6 Replies View Related

Android :: Achieve Dynamic Midi Generation And Playback On Droid?

Apr 12, 2010

Strangely I find no support for Midi in Android.
The only thing that comes close is the Jetplayer, but this only takes a existing .jet file.

I want to dynamically generate a midi file with some intervals and play it.
I even thought about just manually creating a .jet file with a tone and then transposing it with the jet player, but it limits the transposing to -12, +12. Which is not so good for me.

There also is a ToneGenerator on Android, but it's limited to predefined tones with no way to transpose.

Does someone know how to achieve midi generation and playback on Android?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved