Hey Guys,
I'm wondering..
1)is it possible to set an imageview's resource to the URL location of an image?
2)is there a way of setting the x,y co-ords of where on the screen to draw the imageview?
3)How would I run a check to see if the space is taken up by another Imageview (must specifically be an imageview)
4) How would I make th...
What audio formats can be played using the html5 'audio' tag in the android browser? Does anyone know where to find official specs on what the android browser supports and not?
For the record, the android media formats page does not seem to cover this - I have soundfiles (3gp) playing fine in a native app, but they won't play in my weba...
hello everyone,
I'm sharing some variables accross activities by using a class like this :
public class Globals {
static Boolean hint1_graph_type_switcher;
static Boolean hint2_stockview_valuation;
other variables ...
}
then I'm using these variables anywhere across my multiple activites with ...
if (Globals.hint2_stockview_v...
i have to access the email database schema like "mms-sms.db" can we able to access the database i am unable to find the database can anyone tell the exact URI of Default Email Program Database
Waiting for your Authentic answer is Required.
Thanks in Advance
...
I am a Java beginner , I want to develop Android app , what all is essential to learn in Java before I start developing ?
...
My android application has two kinds of preferences:
1) I have user preferences defined in res/xml/preferences.xml so that users can manage their preferences with a PreferenceActivity.
2) I'd like to define another file for global configuration preferences of my app.
What is the best way to manage my app config preferences? Should I c...
Can we view the database of Emails on Device through DDMS ?
How ever i can see and access the database of SMS on Emulator through DDMS.
Thanks in Advance.
...
I am using Ksoap2-Android for consuming the WCF Services.
For the dotnet client we keep the allowCookies="true" in our binding configuration and it sends the same sessionid and keeps my sessions intact in my WCF services (My services are
interdependent and use the sessions).
Any one know any such setting for ksoap2-android, that will a...
Hi ,In my application i want soft keyboard when emulator is in landscape mode only.if mobile is in portrait mode i want to use keyboard which was designed by me,
give me some suggestions for this.Thanks in advance
...
I have made db using java this way :
public static void main(String[] args) throws Exception {
String CITIES[] = city.split(",");
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:test.db");
String V[][] = {COUNTRIES,CITIES,occupations};
String []TypeNames = ...
hi,
is there any way to add, delete and update Calendar.
and
is there any way to add, delete and update Events in Calendar.
Thanks.
...
Hello.
I have several files stored in my project /res/values folder, is there any way to open and read these files from my android application? Each file contains text informations about one level of my game.
I really appreciate any help.
...
hi,
My objective is to read and write Calendar.
i am able to read data from the content://calendar/calendars and content://calendar/events
String uriString = "content://calendar/calendars";
Log.i("INFO", "Reading content from " + uriString);
readContent(uriString);
uriString = "content://calendar/events";
Log.i("INFO", "Readin...
I have a UI with buttons. This thread takes input from the user and does a particular task. Now, I want the background of one button(generated randomly) to change periodically(say, every 30s), but i want the main thread to continue taking input. I m not able to interleave the threads in exactly this way. Any help would be appreciated. Th...
I use the following code to receive the data from a particular port. It's not working in Android. But sending data to particular port is working fine.
public class UDPDemo extends Activity {
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(...
The problem:
I want to use a WebView to enable dynamic loading of ads in my app. I'm currently running on a HDPI device, and images width a width of 480px are clipped/scrolled. If I use images with a size of 320px, they are zoomed in and rendered at too low a resolution.
The content of the loaded WebView url is a simple web page with j...
Hi,
I would like to know, once for all.. ive read in many places.. when i wanna do some 'long time operations' i should use a Handler.
But i dont get why? all my 'long-time-operations' i surround with a regular threads, and it works fine.
why would I use handler for this?
the only time i had to use Handler was, when I had to schedua...
I am making an sqlight using eclipse outside the android project
what should I add into my android manifest in order to make it work ?
thank you Mathias, lets take this q to another project who genrate a sql file using java
assuming this how can I set the
SQLiteDatabase.NO_LOCALIZED_COLLATORS
flag when calling
SQLiteDatab...
Can I run an Android app through the emulator and make it print strings to my computer's console? By console I mean the standard place you would expect to see a System.out.println() in a normal java application. So if you ran the java application from the command prompt then you will see the println()s in the command prompt or if you ran...
heya,
maybe somebody can help me out. i'm trying to add a google maps within my android app. if i want to run my app in emulator, i get the error: "Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY". of course i read about what my problem, the reason seems to be that the target device doesn't have the needed libs, but i'm not ab...