Tagged Questions

HTC Corporation, formerly High Tech Computer Corporation, is a Taiwan-based manufacturer of smartphones.

learn more… | top users | synonyms

22
votes
3answers
1k views

Android: Is there a universal way to send the MMS on any android devices?

This code works on the plain google devices with native android system. But there is no MMS app in the list on htc sense devices and I don't know about Motorola Blur etc.: final Intent ...
14
votes
3answers
2k views

Android HttpClient OOM on 4G/LTE (HTC Thunderbolt)

I have gotten some reports from users of crashes when try use my application on Verizon's 4G/LTE. Looking at the stack trace, it looks like Android's HttpClient.execute() implementation is throwing ...
8
votes
1answer
151 views

HTML placeholder does not work for Android

I have a mobile version of my site and on the login page I use "placeholder" to display: Email or Password (instead of using label). For iPhone it's working but not for Android, it disabled my field ...
7
votes
1answer
253 views

HTC Only Hard Crash inside OpenGL

I have been seeing this problem for a while in my application. It shows itself by randomly hardlocking or rebooting HTC phones when they are rendering using OpenGL. Checking the logcat it appears to ...
7
votes
3answers
815 views

Android Intent for HTTP MP3 stream on HTC Incredible

On the stock Droid and Nexus One, an intent like this: new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.parse("http://example.com/somemp3.mp3"), "audio/mp3"); works just fine and pops open the ...
5
votes
1answer
990 views

How to find out how much free heap size is available for bitmap for Android 2.*?

Our application uses a lot of bitmaps. It works fine for example on G1, XOOM. But on HTC Desire there is an OutOfMemory error. In code we use try/catch(OutOfMemoryError e) and all devices(except ...
5
votes
3answers
4k views

Android Native debug (ndk-gdb) on HTC Desire: run-as flaw?

Dear all, I'm trying to perform native code debug on my HTC Desire for my Android project. The project is made of a thin layer of JNI wrapper and the main chunk in C++, compiled using ndk-build. The ...
5
votes
6answers
7k views

Android: Delete entire database

I would like to delete a complete database created by my application. Do you know any adb command, or android sentence to do it? Thanks in advance. Best regards. Jose.
4
votes
2answers
333 views

Toast not showing on HTC Sense 3.0 lock screen

I have created a program that displays a toast every time I receive an incoming call. It is working fine on all phones I've tried - toast showing on the incoming call screen. Yesterday I updated my ...
4
votes
1answer
669 views

HTC Sense API for Android?

Just wondering is there special API to access/read/modify HTC Sense features for Android devices? I mean some vendors has special add-on API/libraries for their devices (like Samsung Galaxy Tab) - so ...
4
votes
3answers
3k views

ADB Driver for HTC Incredible

I am looking for the WinXP Pro SP 3 ADB driver for the HTC Incredible. Does anyone have a link to it?
4
votes
3answers
1k views

How do I get started with developing for Android without an Android phone?

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 ...
3
votes
1answer
457 views

Android access to front camera on HTC Thunderbolt

I need to access the front camera on the HTC Thunderbolt from within an application (as a standard Camera object). Can any developers point me in the right direction? HTC has released a jar for ...
3
votes
2answers
833 views

Scrolling a GridView with only Buttons

I have a GridView with only Buttons in it. The Buttons should be able to be pressed (working). But if I want to scroll the gridview with many items in it it is not working on my HTC Desire but it is ...
3
votes
2answers
3k views

onCreateContextMenu() for EditText doesn't work on real device

Just tried to test my app on real device (HTC Desire Z with Android 2.2). And found that my context menus doesn't work at all on EditTexts. Otherwise context menus works: in ListView, ImageView and so ...
3
votes
1answer
954 views

How do you activate the LED light on an HTC EVO 4G?

Trying to activate the LED to use as a flashlight on the HTC EVO 4G. I know this is possible because there at least a couple applications in the Android Market (LED Desire Light, Tesla) that do this. ...
3
votes
1answer
1k views

Copy android contacts' birthday to calendar

I'm an htc tattoo owner, and i'm watching for a way to copy contacts' birthday (retrieved from facebook) to the built-in calendar. I'm not afraid to develop a custom app but i'll be more happy if ...
3
votes
4answers
1k views

Why are GPU threads in CUDA and OpenCL allocated in a grid?

Im just learning OpenCL and im at the point when trying to launch a kernel. Why is it that the GPU threads are managed in a grid? I'm going to read more about this in detail but it would be nice with ...
2
votes
0answers
20 views

Android Facebook SDK - Different Devices, Different Results

I have hooked up the Facebook application. I have a couple different devices to test on, and I'm getting different results. So far, everything is working great with my Motorola Droid phone, but I ...
2
votes
1answer
98 views

Android LogCat continuously repeating a warning: “Addition of standard header … not allowed”

I've been developing an Android application using version 2.3.3 (API 10). The application simply uses Flickr Java API (flickrj) to make certain search queries based on tags, date, geographical info ...
2
votes
0answers
324 views

HTC wildfire clear history does not clear browser history

I have developed my app to display browser history. I query the android.provider.Browser.BOOKMARKS_URI table to fetch data & update my UI. This works well on Google Nexus S, but HTC Wildfire gives ...
2
votes
0answers
75 views

HTC Evo 3D Preview

Im trying to get the preview from the separate backfacing cameras in HTC Evo 3D. I access the camera using camera.open(CAMERA_STEREOSCOPIC) but the preview aspect ratio is 640x480 or 1270x768. There ...
2
votes
0answers
241 views

Android Looper handler handleMessage is not called after sending a message to it (HTC EVO 3D)

I am experiencing a very strange problem: On HTC EVO 3D, sometimes, a looper does not call handleMessage after a message is sent to the looper's handler. It happens twice and very difficult to ...
2
votes
0answers
144 views

Inserting contacts on HTC problem

I have problems with inserting contacts in HTC devices, it looks that it works fine on other devices. I'm using code from: Inserting contacts in Android 2.2 ArrayList<ContentProviderOperation> ...
2
votes
1answer
485 views

How to add other supported devices to android store

Hey basically i done some of my testing on my HTC wildfire and the application worked fine but for some reason it is not supported in the device list is there any way i could contact google to make it ...
2
votes
0answers
2k views

Android Live-Wallpapers HTC Desire HD wallpaper picker massive icons [closed]

I've created a live wallpaper and added all of the images and icons that Google requires but apparently these look really bad on an HTC Desire HD. Does anyone know how to create the massive icons for ...
2
votes
1answer
849 views

Android PhoneStateListener: onCellLocationChanged in standby mode

I'm writing an app that runs in the background as a foreground service. This service instantiates a subclass of PhoneStateListener. The PhoneStateListener creates a TelephonyService with a context ...
2
votes
2answers
1k views

Android: Is there a programming way to create a web shortcut on home screen

Do you know is there a programming way to create a web shortcut on the phone user's home screen? What I want to do is: When the phone user click a button in our apk application, the application will ...
2
votes
1answer
824 views

copying sqlite db to android device fails

I have an sqlite db which I copied to the 'asset' folder. In my prog I check if the database already exists, if not I create a new one and copy it. I used (more or less) the code from ...
2
votes
1answer
559 views

android , refresh image thumbnails , or sd card before calling an intent to choose an image

basically im trying to refresh the sd card in order to have image thumbnails represent their corresponding pictures. The reason for this is a user can send a picture to the server and the server ...
2
votes
1answer
198 views

Account doesn't appear in contacts app settings on device from HTC

I write my own SyncAdapter based on example in SDK. It should add contacts from external source, and it works perfect in device emulator. But when I run it on HTC Desire after all I can't see my ...
2
votes
1answer
991 views

How to find out which Bluetooth profile is used for communication

I need to use Bluetooth for communication with another application which sends data via bluetooth SPP profile. I use the Bluetooth Chat app from Android developer site. I am using real phone (HTC ...
2
votes
2answers
854 views

Android: softkeyboard control on HTC desire

I posted a question earlier today which was well answered by commonsware. I wanted a numeric keypad that had a go or done button that closed and executed a calculation class. Thanks to a tip from ...
2
votes
1answer
856 views

Calling android.speech.RecognizerIntent API results in Connection Error dialog, shows 'calling_package' warning in log

I wrote a small app to allow the user to choose which language he uses the Voice Search via a button, rather than relying on the user's language preference (sometimes you want to voice search in ...
2
votes
1answer
149 views

android : how to detect the navigation button pression on HTC?

Im testing a software on HTC desire phone. There is a special button on the right of the menu button. Its a circle. Its used to navigate and you can also press it. I would like to detect when someone ...
2
votes
2answers
4k views

Improve GPS Accuracy Android

Hi im working on an app that use gps My testing devices are Nexus One and Htc Mytouch 3g Slide So does anyone know how to improve the gps accuracy?
2
votes
1answer
504 views

Program adding contacts on the emulator does not add contacts on the HTC Desire

I want to write a program to automatically generate the contacts. I also use a special service to add account on emulator. The same account is used on the telephone. Below is my code: ContentValues ...
2
votes
1answer
263 views

Android HTC Desire Voice input issues

Would anyone have an idea as to why an app would work on almost every phone that has 2.1 but not the Desire? One of my apps uses voice input and the Desire is the only phone that force closes when ...
2
votes
2answers
1k views

Is there a way to connect Wifi using PPPoE on Android?

Since I am newbie in Android, I don't know how to connect Android (2.1 on HTC Desire) with PPPoE using wifi connection. So Please anybody know solution, then kindly help me.
2
votes
2answers
970 views

Showing mobile friendly web page without having to zoom in

im trying to create a mobile friendly web page using the code below. When i view it over a HTC desire i have to zoom in to see the correct size. How can i get it to display normally without having to ...
2
votes
2answers
1k views

How to access programmatically what is displayed in an Android lock screen

Today I am looking for a way to mimic the behavior I know from my HTC Hero's lock screen: the calendar and alarm clock can put text & drawables there to inform about an upcoming event or an ...
1
vote
1answer
25 views

HTC Softkeyboard key that hidden the keyboard

On the HTC keyboard there is an additional key that allows the keyboard to be hidden. When this key is pressed the keyboard is hidden but no KeyEvent. How to get this event or callback method ...
1
vote
0answers
30 views

Content Provider doesn't fully work on every device

I've implemented the following and it works painless on HTC Desire (Android 2.2). Uri uri = Uri.parse("content://com.package.app.AssetProvider/"+"document.pdf"); Intent intent = new ...
1
vote
2answers
64 views

Debugging HTC Desire HD through adb on MacBook Pro

I have been developing Android for a while now, but just got a MacBook Pro from work (don't stone me, it wasn't by choice). I got my Android eclipse project up an running and now want to run the ...
1
vote
1answer
85 views

does HTC Magic Support OpenGl ES 2.0?

I have HTC magic (rooted and flashed to android 2.3.4-ginger yoshi1.5). As it is stated in android documents that android 2.2 supports opengl es 2.0,I want to make a app using opengl es 2.0. But ...
1
vote
3answers
52 views

Space buttons evenly on Android

I am trying android programming for the first time and want to create a calculator program to get a foothold. My problem is that I can't place buttons on the same row without having them right next to ...
1
vote
2answers
118 views

SimpleCursorAdaptor with an AutoCompleteTextView Giving NullPointerException at onItemClick on HTC Devices

I have a problem that I have tried several different failed solutions for. I have a AutoCompleteTextView with a SimpleCursorAdaptor tied to my database to pull the names of products. When a user ...
1
vote
1answer
94 views

(*vm)->GetEnv segfaults only on HTC devices

Im currently working on a bigger project with multiple threads in the native environment. Therefore I need a call to (*vm)->GetEnv to receive the currently active JNIEnv for the native thread. The ...
1
vote
0answers
173 views

HTC Desire dialer misinterprets fragment in URI and runs USSD code. Is there anyway around that?

Code: Uri uri = Uri.parse("tel:" + phoneNumber + "#fragment"); Intent intent = new Intent(Intent.ACTION_CALL, uri); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); When the ...
1
vote
1answer
95 views

Why are CSS3 PIE and other similar scripts not in use everywhere?

This question has already been asked at htc files: Why not to use them?, but the answer didn't answer anything really. The question is, why is something like CSS3 PIE not in use on many sites? I'd ...

1 2 3 4 5