|
Is Android backwards compatible, in other words can an application developed in Android 1.6 run in Android 2.0?
I just published a 2.0 application and discovered that I can't find it in the market using my G1 (Android 1.6) phone. But apparently others...
Started by Tawani on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Are downloading your 2.0 app because they hay 2.0 android on their phones (ex: Motorola Droid)
With no more bye app by using new features of the Android SDK 2.0 and then:
update the old app if you only want to aim android 2.0 (or....
|
|
Has anyone successfully compiled the android kernel and tested it in the Android emulator, and if so is there anything that special that needs to be done?
Documentation for the SDK is excellent, however documentation for compiling the kernel and setting...
Started by Zyris Development Team on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just set an environment variable named ANDROID_PRODUCT_OUT to <android> when you follow the instructions....
By building/linux-x86/bin/emulator.
That takes a while, but isn't that complicated.
And compiling the source code for the whole android.
|
|
Hi,
I have a question about bluetooth RSSI functionality on the Android (either 2.0 or 2.1):
It's easy enough to get the RSSI value when a bluetooth connection is created, but how can you repeatedly get the RSSI value of a connection that is already active...
Started by Alex Hertel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When I Google "Read_RSSI_Command" or "Android HCI level", I don't find any to have the opportunity....
Nick Pelly Android Bluetooth Team
Hi Nick, I hope you are still app work on the Android.
This in any Android Java API at this time.
|
Ask your Facebook Friends
|
How can you read data, i.e. convert simple text strings to voice (speech) in Android?
Is there an API where I can do something like this:
TextToVoice speaker = new TextToVoice(); speaker.Speak("Hello World");
Started by Soni Ali on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
A tutorial on using the library The big(); } }
Previous answers are now ... .
Here you go.
Beyond that, though, there is nothing built into Android for text-to-speech.
Engine, suggesting it will be available in future versions of Android.
|
|
More or less as it says on the tin.
Before I even contemplate downloading the SDK, I was wondering if there was any way of testing Android apps that I'd write without an Android phone available to me? I'm unsure as to whether or not the tools that come...
Started by Liam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To use the emulator.Its fine for learning the ins and outs but id suggest investing in an android.
|
|
Can any one tell me whats going wrong with the text, text exceeds then one line not getting wrap to next line going beyond the screen.
Following is the code
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width...
Started by Faisal khan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I fixed it my selves key is android:width="0dip"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding....
|
|
Hi
I'd like to add a menu option to the Android camera app. Is this possible to do using the current SDK?
Thanks.
Ok I know I need to add an intent-filter tag in my activity. But I don't know what I should put in the mime type. I want to be able to process...
Started by lostInTransit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most of the built-in Android applications do not add third-party options to their menus-in e-mail app uses the following intent-filter to do this:
<intent-filter> <action android:name="android.intent.action.SEND"/> <data ....
|
|
So Ive been trying to add a button underneath a listview in android, the problem is that the button does not appear.
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout android:id="@+id/widget0" android:layout_width="fill_parent" android:layout...
Answer Snippets (Read the full thread at stackoverflow):
Use a LinearLayout:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/widget0" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk....
|
|
Hello,
I have frequent problem in android view, Error parsing XML: unbound prefix on Line 2 .
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:orientation="vertical" android:id="@+id/myScrollLayout" android:layout_width="fill_parent...
Started by Pentium10 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You also see xmlns="http://schemas.android.com/apk/res....
I found out that this is because the first node needs to contain: xmlns:android="http://schemas.android.com/apk/res/android"
As you mention, you need to specify the right namespace .
|
|
<RelativeLayout android:layout_width="fill_parent" android:layout_height="50dip"> <Button android:text="Edit" android:width="50dip" android:layout_height="fill_parent" android:layout_width="wrap_content" android:layout_alignParentLeft="true" ...
Started by Jared on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
With this layout:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="50dip"> <Button android:text="Edit" android:width....
|