Started 1 week ago (2009-12-18 09:02:00)
by wige
When you go to the new Project Wizard, is there a folder "
Android"? If so, what happens when you select "Android Project"?
Started 4 days, 7 hours ago (2009-12-22 00:15:00)
by vivart
From java code you can do like this
Code:
textView = (TextView) findViewById(R.id.TextView01);
textView.setText(H tml.fromHtml("H<sub>2</sub>O"));
if you want to do this from
xml resource add this line in string.xml
Code:
<string name="textViewl">H<sub>2</sub>O</string>
do not forget to add some bottom padding
Code:
android:paddingBottom="5dip"
Started 6 days, 10 hours ago (2009-12-19 21:40:00)
by wige
In the SDK/ADV manager, try unchecking the box for SSL, and connect normally, that should allow you to download the packages (had the same issue in Win 7). See if doing it this way corrects the problem, if not I'll try to
replicate when I rebuild my dev environment.
Started 2 weeks, 4 days ago (2009-12-08 06:17:00)
by Broto25
Started 5 days, 14 hours ago (2009-12-20 17:31:00)
by KeithG
Quote:
Originally Posted by cvance383
it is only for certain files (yes they are all mp3s) and only on the
droid. Anyone have any ideas why these songs would hang?
compare the
mp3 encoding info on the files? First thing I'd check is to see if the ones that don't work are VBR or CBR.
Started 4 days, 19 hours ago (2009-12-21 12:26:00)
by 28064212
Short answer, no. At least, you couldn't do it without the phone-owner's consent, and they would have to download an app and install it on their phone. It's not possible to do it remotely
Started 5 days, 13 hours ago (2009-12-20 19:00:00)
by JoshKraker
Are you asking how to retrieve data from a internet location? Is it a webpage or ...?
Started 4 days, 3 hours ago (2009-12-22 04:33:00)
by KlaymenDK
Isn't that automatic, standard behaviour?
If your device has no physical keyboard, and you tap a field, the
virtual keyboard should pop up automatically (regardless of orientation).
Started 6 days, 10 hours ago (2009-12-19 21:33:00)
by wige
It is not a problem I have experienced personally. Could you provide additional information? Which image are you using, what version of Eclipse, what operating system is on your dev computer, what error messages you get, or what you are doing when you experience a crash?
Started 2 weeks ago (2009-12-12 00:55:00)
by JoshKraker
Ok, so I gave in and tried saving the image to the sdcar first anf then creating a file URI using the following code
Code:
//
Omitted Class ...
public Uri getThumbFileUri() {
if (getThumbBm() == null) return null;
File F = new File("file:///sdcard/MyProject/Images/Thumbs/" + PicId + ".jpg");
Uri U = Uri.fromFile(F);
return U;
}
...