Basic VRPN App
Feb 26, 2012
I'm very new to writing androd applications. Ive been set the project of writing an application for a tablet that when the user touches somewhere on the screen the application sends the coordinates to an application running on my Linux pc. The data is to be send using VRPN.
View 2 Replies
Jul 21, 2010
I just deodexed the FRG01 build Pete posted a few days ago. I'm amazed i learned how to do it, although I had a tool that made it easier. Now I'm seeing during the deodexing it says the files are being put into a (origi_app) and (origi_frame) folder Root Explorer to look for these files and can't find them on my phone. Can someone please point me in the right direction? I'm on my way to making my first basic ROM.
View 4 Replies
View Related
Sep 25, 2010
I have managed to root and lag fix but thats about all. I would love to be able to play some oldschool games. Can anyone give me a step by step guide to doing this. I found some threads about it but they are really a bit too advanced. So maybe someone could start kind of basic.
View 2 Replies
View Related
Aug 21, 2010
Can someone point out how to restore the basic Android Launcher or help me fix the Dialer. When I select the dialer on the dock it states "Application not installed." There is no settings for Android Launcher or dragging over a app to replace that icon doesn't work either.So basically, i need to delete it with Titan and restore it.Cant find how to reinstall it when i uninstall it.
View 3 Replies
View Related
Nov 1, 2010
what is a kernel? I'm just lookin for a basic definition.
View 2 Replies
View Related
Jan 24, 2010
We already use Android API. But sometimes I want to know is it verified or not? by whom?(e.g. Android team in google) by which one? (e.g. Unit test or Basic Acceptance Test for API) Do android team have any test report? Because this is a platform for smartphone. For example, if there has any problem in Android API (e.g. Date and Time), it makes customer spend money and time more. But I can't find any report about verifying API test. If you have any information about it, please let me know :) Also if there has no information, how can I test some API to verify API.
View 4 Replies
View Related
Jun 29, 2010
I'm having great difficulty getting basic textures to work in an OpenGL ES app on my Droid (2.1-update1). I trying to render a simple textured quad - four vertices, two faces, with normals and texture coords. When rendered, the texture is garbled and full of static, similar to TV noise. The basic colors from the texture map are there, but obviously the texture isn't being read or applied correctly. My texture load sequence is simple : int[] textures = new int[1]; gl.glGenTextures(1, textures, 0); Bitmap bmp = BitmapFactory.decodeResource(cx.getResources(), R.drawable.img); gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]); GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bmp, 0);...
View 2 Replies
View Related
Oct 3, 2011
I am a complete novice to the field of Android applications. I want to build a basic Android application of an "website alert and post service".
Eg: Lets take FACEBOOK or TWITTER as the website.The application which I design should intimate me about the new posts or tweets of my friends. At the same time I must be able to post or tweet just by opening a text box in the application and writing in it. As soon as I write, the message should get posted or tweeted on the website.
I am not sure about the complexity of the above application but I feel this would reduce the trouble of opening a browser, typing the website name and then logging in by putting the username and password.
View 2 Replies
View Related
Apr 5, 2010
I have a Web View. I'd like to show some page from my server, but I require some basic authentication. Is there a way I can specify basic auth credentials when calling Web View.load Data() somehow? I can do this on i phone with the equivalent web view class, thinking maybe same is possible with android?
View 2 Replies
View Related
Jan 10, 2010
Can I just buy a larger memory card and copy everything across and just put it into my Hero and it will work?
View 3 Replies
View Related
Aug 16, 2010
I have the following layout in XML (splashscreen.xml):
CODE:............
When I try to execute it in Android 1.5 (executes correctly in all other versions) I get these errors:
CODE:.............
Line 5 corresponds to ImageView line. Do you have any idea why my program executes in all Android versions except 1.5?
View 1 Replies
View Related
Oct 18, 2010
Is there a Rom that has bare items in it? I'm talking about just the basic basic essentials that makes the stock rom look like a joke. Something that doesn't contain ringtones, music files, just the bare items to keep the rom going: basic phone, basic texting, etc. and no added items like facebook, twitter, etc. No added scripts, features. If none like this exists, then does anyone know what is safe to remove from a stock rom and what needs to stay? I'm looking into making my own personal rom (and maybe one I can share with you all) that I can play with as far as adding and removing items while maintaining max storage space on the phone itself.
View 1 Replies
View Related
May 8, 2010
I am new to android and last year i bought two books of android 1.5. But at that time i was busy in my project so was not able to work on android. Now i want to start android again. Should i go for those books or should i buy new editions. Is there any major change regarding basic learning? My question is purely related to change in version.
View 1 Replies
View Related
Jun 5, 2009
I routinely use my g1's browser to connect to a website that is protected with basic authentication (so you get the popup for username and password). Ever since updating to cupcake, my phone seems incapable or unwilling to correctly use / remember my passwords. It's driving me crazy, and I'm ready to chuck the thing out the window, or at least revert to the previous version. Has anyone else experienced this problem?
View 2 Replies
View Related
Sep 10, 2009
I've recently got the HTC Hero which I love to pieces, it has some gripes but generally there's a workaround on the Android Market or it's just not major enough to make me dislike the phone.
I've just come across an issue I can't for the life of me find the answer to though... Say if I've captured 20seconds of video and I wanted to MMS it, it says the file is too large (it's on the highest camcorder settings atm, think it's set to record Mpeg). Is there any way I can edit the file to chop off some seconds at the front and/or end to make it a smaller file?
I tried some searches on the Android Market but didn't have much luck really, not sure if I'm using the wrong phrasing and so am bowing to your collective expertise to see if anyone knows the answer
Not looking to do anything vastly interesting, my old phone did have a video editing function and you could merge clips with some basic fade scene to scene edits, or add text... if ever I though there'd be something on the market it'd be this type.
View 1 Replies
View Related
Jul 6, 2010
I have been trying to code and run the hello world application but am not able to get the emulator to boot all the way. Plan b is vb.
View 3 Replies
View Related
Oct 13, 2009
I have a WebView in my layout which I want to display a web page in. However the webpage requires Basic Authentication.
If I try to access this web page in the normal android browser, I get prompted for a username and password which then gets remembered and works for the site in future.
I want to do the same thing in my application, but when I load the page into the webview it just comes straigt up with the Unauthorized message without prompting.
I guess the prompting for Authentication is written in code in the android browser. Does anyone know how to inject a username and password into the WebView?
I have done a search arond and found the setHttpAuthUsernamePassword (String host, String realm, String username, String password) Method, But can't seem to get it to work and I can't find anyone else who has either? Not sure if I am giving it the correct parameters as I'm a little confused by what is means as the Realm?
I assumed that if the site was myhost.dyndns.org then the hostname would be myhost and the realm would be dyndns.org? This didn't seem to work. I also tried connecting by IP Address but that makes the Realm setting even more confusing? Any ideas on how I can get this working?
View 4 Replies
View Related
Apr 28, 2009
I have created a web application in ruby on rails and I want to use it now in my android application. I use http basic authentication in my website but I don't get any success to authenticate me trough the android application..
I have protected resources and pages on the website that needs authentication to access it! How can I get this right in my application?
How can i do the authentication? i have tried with a arthroscope and BasicCredentialsProvider but i think i am not doing it good! Can someone help me!
View 7 Replies
View Related
May 28, 2010
I'm new to programming applications for the Android OS. As far as general architecture of the OS goes, I understand that processes are implemented as Linux processes and that each one is sandboxed.
However, I'm utterly confused on the IPCs and syscalls (if any) used. I know that the IBinder is a form of this; parcels are sent back and forth between processes and Bundles are array forms of parcels (?). But even that is still unfamiliar to me. Same with Intents. All in all, I don't understand what kinds of IPCs are implemented and how.
Could someone briefly explain to me the specific methods used by user level applications in Android OS to communicate with each other and the OS? I've done kernel programming and played with various IPCs in Linux (Ubuntu and Debian) so it would help immensely if this was all explained in relation to what I'm familiar with...
View 3 Replies
View Related
Feb 2, 2012
I recently upgraded from honeycomb to Ainol's ICS version. I accomplished this using the normal flash method with the update.zip file copied to my 16G Mini SD. After the Rom update I installed several programs using ADB shell. I was having difficulty getting titanium backup to work and decided to upgrade my Rom to 4.0.3. I used the same method to flash my device with the update.zip file on my SD card. After the power up I get the android robot then the reboot but there is no change to the version of my Rom. I did a factory reset to my device. After the reset my device no longer had any of my previous installed apps but the version indicated in the settings is still 4.0.1. I have even attempted to flash back to honeycomb but no change occurs to my device. I then try to flash using CWM but I cannot get it to install on my device.
View 1 Replies
View Related
Aug 2, 2010
I'm a new android convert. I'm looking for an app that will keep the next upcoming event on the screen like windows mobile will. I'm looking to upgrade the basic droid calender, this feature is the only one I miss from my HTC tilt 2.
View 1 Replies
View Related
Aug 26, 2010
First and foremost, are there many android developers here? Is this a good place for Android related discussions?I seem to be missing a rather large concept of Android development. The gist is I am struggling understanding how to tie an application together. I'm not sure how to explain it, so I thought I would do my best with an example from the Android ApiDemo... assuming you are familiar with it.
Inside the com.example.android.apis.view namespace of the ApiDemo, there is a class called Animation3.java.Animation3 inherits the activity class and there is some code inside to display animation.I can't find a reference to the class (Animation3) anywhere in the demo code (except for its definition obviously). The only mention I found is in the manifest xml file. So how the heck does this activity get started? Don't we need to create an instance of the class somewhere and fire off a method to start it? I don't understand how to generate the code that ultimately glues this class to the rest of the application.Additionally, what about other classes like views or viewgroups? How do I generate code outside the class that initiates/starts/uses/calls (insert proper term) the class.I would appreciate any code examples as well as any concept explanation or reference documents. So far I've read pages and pages on activities and views but I'm really struggling how to tie things together.
View 4 Replies
View Related
Nov 5, 2009
Still missing winmob a little. Just bought Docs to go so I can use excel pdf and word docs. What's the Android equivalent of Activesync ie. synchronizing a folder of files on the device with files on my laptop? Love all the multimedia stuff and the really nifty compass, flashlight and metal detector. Just feel like I'm missing the meat and potatoes of a productivity device.
How about an app to sync photos, tasks, notes and hotmail (I hate the pop mail crap, no folder sync). Can hotmail be sent through gmail like in the sticky? AK note looks great, but I think it's pointless if it lives and dies on just the Android device. Slightly frustrated with the learning curve and my battery going for hours on 3 % with no backlight!
View 12 Replies
View Related
May 11, 2010
I am very impressed with Talk To Type's accuracy. It's great for chat and many informal things but seems to be missing some features that would have been very easy to implement.1. Automatic capitalization - no brainer - it should capitalize obvious proper names, the word "I" and the beginning of every sentence, or at least this should be an option. 2. Automatic punctuation - it should be an option to place a period at the end of each phrase (defined by when you stop speaking) and if the beginning word was "who", "what", "where", "when", "how", etc...it should be an option to automatically enter a question mark. I get that you can speak the name of the punctuation mark, but this option would make it more useful. 3. Numbers less than ten should be spelled out (e.g. "nine" instead of "9") It's so accurate compared to many that I've tried to use in the past, yet it doesn't have these super-basic and very easily implemented features. It makes it less useful for e-mail, especially corporate e-mail, where the mail needs to not resemble a high school text message.
View 4 Replies
View Related
Jul 11, 2010
Does anyone know of a simple, text only battery status widget? I am working on making a very clean minimalistic LauncherPRO UI, and would like to find a text only, transparent battery status widget. Ideally, something that fits nicely using the Beautiful Widgets Home (Small) widget for clock/date/weather info.
View 8 Replies
View Related
Aug 25, 2010
Loved the app for the G1, since it was capped and setcpu got it to run at max speed. Ditto for Droid, since it was also capped and the OMAP had plenty of ceiling for more speed.The Snapdragon is already designed to dynamically scale from 245mhz to 1ghz, so what good are the settings, if Snap is already detecting resource needs and adjusting clock accordingly? This function is built into the die and seems no need for software augmentation.I appreciate insight, since some of the posts I have been seeing may suggest something that Snap already was designed to do and is built into the hardware.all of the needed polling that must happen through software for profile conditions may offset any gain as well. Seems inefficient managing via software, when the chipset already dynamically manages- unless Snap does a poor job in the first place.
View 5 Replies
View Related
May 10, 2010
I was and I am so excited with my phone. How can I be happy with my phone if some of the basic features are not working properly? I am very frustrated with my phone not because of the bugs but because it really affected my life.
1. Alarm issue, Motorola wants the user to be searching in the forums to find a solution to a core function? I got to work late by 1 hour the first time this occurred.
2. Yesterday suddenly when I unlocked my phone there was nothing on the home screens, and I have the stock home application. I was going right left, and nothing was there!
3. The music player suddenly starts playing. I was in a meeting and suddenly the music player starts playing! What should I say to the other people? There's a bug in my Milestone and Motorola is just too lame to fix it.
View 25 Replies
View Related
Jul 18, 2010
May I start off saying that I can't stop playing with this phone. How do I get a basic java site to work? I have an Aquarium web controller and it isn't opening it. This worked on My blackberry (w/Opera), WM, & iphone(3wks lol). Do I need a plug-in or something check marked?
View 2 Replies
View Related
Aug 13, 2009
I cant find a way to use an url that requires basic auth when im using code...
Anyone that got any ideas?
View 3 Replies
View Related
Dec 28, 2009
I am looking for some sample code or tutorial that sets up the most basic opengl es application.
for example, just do glClear() in the renderloop.
i have already been searching the web but all i found was either out of date or too much and too complicated.
View 1 Replies
View Related