[android-developers] Re: write tag with opengl on android

2011-03-22 Thread Lance Nanek
I just draw a character at a time, so I can draw anything. I use char[] instead of String so I can preallocate and avoid garbage collection. You asked for code, so here it is. Mine's horrendously ugly, but I wrote it once and it never needed much revising, so I never really needed to clean it up.

Re: [android-developers] Re: Confused by @Override

2011-03-22 Thread trans
My app is based on the SoftKeyboard example. Problem is the way the KeyboardView class is designed in the Android API, as far as I can see it only allows for one key background for all keys. As of yet the only way around it I can see is to create a IME from the ground up and dump the Keyboard

[android-developers] Re: adding custom view in main.xml

2011-03-22 Thread Vishwesh R.
my code:- main.xml ?xml version=1.0 encoding=utf-8? com.MyPack.canvasexample.Myview android:id=@+id/view1 android:layout_width=fill_parent xmlns:android=http://schemas.android.com/apk/res/android; android:layout_height=fill_parent android:clickable=true /

[android-developers] Re: adding custom view in main.xml

2011-03-22 Thread harsh chandel
set paint style canvas.drawLine(100, 100, 200, 200, new Paint()); instead of new paint define pay style On Mar 22, 11:27 am, Vishwesh R. vish...@gmail.com wrote: my code:- main.xml ?xml version=1.0 encoding=utf-8? com.MyPack.canvasexample.Myview         android:id=@+id/view1        

[android-developers] Re: how to reload previous activity on back button click

2011-03-22 Thread harsh chandel
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { //Intent intent = new Intent(this,name of the class where you want to go to); startActivity(intent); return true; }

[android-developers] Re: Can this app be developed?

2011-03-22 Thread harsh chandel
yes it could be done On Mar 21, 6:20 am, shubhandroid aadee...@gmail.com wrote: Can an app with the following features be made: -Phone1 transfers video feed from the major camera to the screen of phone2 via bluetooth -when user clicks on a button on the screen of phone2, it should press a

[android-developers] Re: Activity lifecycle... still a mystery to me

2011-03-22 Thread harsh chandel
yes all things you specified could be done write overwrite back button code for 1 2 not clear 3 ok write overwrite onstop ,onpause,on resume On Mar 22, 7:59 am, DulcetTone dulcett...@gmail.com wrote: My app responds to speech commands. I want the behavior to be that 1.  if back is hit on my

[android-developers] Re: How to capture key events from View subclass

2011-03-22 Thread harsh chandel
try ontouch method get x and y coordinate of the area clicked and do as you want on the clicked event On Mar 21, 4:39 pm, Rich E reakina...@gmail.com wrote: Hi, I'm trying to figure out how to capture keyboard input from a View, without subclassing EditText or something similar (the reason

[android-developers] Re: Android WebView with CSS modification of hr tag

2011-03-22 Thread harsh chandel
just open it in web view webview.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); webview.setBackgroundColor(0); webview.setInitialScale(110); form.addView(webview);

Re: [android-developers] Cloud Computing

2011-03-22 Thread Marcin Orlowski
On 21 March 2011 19:08, TreKing treking...@gmail.com wrote: On Mon, Mar 21, 2011 at 1:03 PM, rishabh agrawal android.rish...@gmail.com wrote: I am a Begginer in android.But i want develope apps for Cloud Computing Oh for goodness sake. And who says marketing buzzwords do not work?

[android-developers] Re: Android WebView with CSS modification of hr tag

2011-03-22 Thread Hendy
It seems to the limitations of WebView.loadData? I also ran into some weird problems with loadData. Such as cannot display tables. See http://groups.google.com/group/android-developers/browse_thread/thread/13f9b8850ac048ac/7347368a5adbe905. But when using WebView.loadUrl, the same html content can

Re: [android-developers] Re: Idea Conceptualization

2011-03-22 Thread Marcin Orlowski
On Tue, Mar 22, 2011 at 2:29 AM, Indicator Veritatis mej1...@yahoo.comwrote: History of what? The URL of each HTTP GET to the given account? Your idea sounds too inchoate for implementation. I am sorry that you feel this way. I agree my language isn't very clear. I am planning to make an

[android-developers] Re: Cloud Computing

2011-03-22 Thread Zsolt Vasvari
Oh please, leave the guy alone. He probably got his CS degree from the same school where the Indian pilots get their pilot's licenses. On Mar 22, 3:39 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On 21 March 2011 19:08, TreKing treking...@gmail.com wrote: On Mon, Mar 21, 2011 at 1:03

[android-developers] Reading files, cut off at 10kb on samsungs

2011-03-22 Thread André
Does anyone know why some samsung phones stops reading files at around 10kb? And what a solution could be? I am using this to open files right now which works on every other phone: FileInputStream fileIS = new FileInputStream(file); BufferedReader in = new BufferedReader(new

[android-developers] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2011-03-22 Thread rishabh agrawal
WHEN I RUN MY APPS IN MY EMULATOR THEN THESE ERROR IS OCCURES.HOW TO REMOVE THESE ERROR Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE [2011-03-22 13:23:30 - SAI2011] Please check logcat output for more details. [2011-03-22 13:23:31 - SAI2011] Launch canceled! -- You received this

[android-developers] Hard Key Board problem

2011-03-22 Thread rishabh agrawal
When i set Screen size of the emulator then the Hard Key Board Remove.I have no real android mobile where i test my apps.so how to call Back,Home button when the Hard Key Board is Removed. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] CamcorderProfile

2011-03-22 Thread b_t
Hi, My camcorder resolution is set to 1280x720 in my Htc Desire with 2.2. If I get CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH) then it says that resolution is 720*480. QUALITY_HIGH refers to the highest quality available Do you know why? How can I get maximum camcorder resolution? --

[android-developers] Re: [bionic-c-lib] SIGSEGV on free()

2011-03-22 Thread Dewr
I have tested it on Galaxy S and it worked well on Galaxy S (2.2). I have not tried it on another Nexus One in order to know if my Nexus One is faulty. and it seems like that AssetFileDescriptor is not the source of the problem, because the problem is still ocurring while I didn't access asset

Re: [android-developers] CamcorderProfile

2011-03-22 Thread Marcin Orlowski
On 22 March 2011 09:17, b_t bartata...@gmail.com wrote: Hi, My camcorder resolution is set to 1280x720 in my Htc Desire with 2.2. If I get CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH) then it says that resolution is 720*480. QUALITY_HIGH refers to the highest quality available

[android-developers] Re: bitmap size exceeds VM budget on BitmapFactory.decodeResource

2011-03-22 Thread Pent
bitmap 1 - 403KB 1600x800 bitmap 2 - 73KB 2600x800 bitmap 3 - 73KB 2600x800 Which means that  uncompressed they have around 6 MB each, totaling 18MB :S This isn't a memory leak I'm getting the exception  in the first line of code when i call the bitmapHolder  to load resources. Your

[android-developers] What to do when the Hard keyboard is out?

2011-03-22 Thread Saied
Hello, I have a soft keyboard (an alternative keyboard) that functions well, except when the hard keyboard is out. When that happens, the text field annoyingly covers the entire screen. (and the soft keyboard does not show up, which is ok). I can detect the keyboard being out in my code, but I

Re: [android-developers] Re: Is there any Reminder Service in Android?

2011-03-22 Thread Nesim TUNÇ
this great! Thanks! On Mon, Mar 21, 2011 at 8:02 PM, roberto roberto.fo...@gmail.com wrote: If you need to run a recurring task (once, twice, 3 times a day or even every 5 minutes), consider using the buzzbox sdk that is built on top of the AlarmManager. More info here

Re: [android-developers] Re: How to get my device's source code?

2011-03-22 Thread Nesim TUNÇ
No, I mean compiled code. I need reverse the compiled code to source code. I seek something like that. On Wed, Feb 16, 2011 at 8:25 PM, Tomislav Vujec tvu...@gmail.com wrote: You can get the sources for various Samsung Galaxy phones at http://opensource.samsung.com/ -- You received this

[android-developers] What exactly is the obtainBuffer in an AudioTrack?

2011-03-22 Thread ThaMe90
I wonder, what exactly is the obtainBuffer in an AudioTrack? I ask this because there is no documentation about it what-so-ever. I have the famous obtainBuffer timed out (is the CPU pegged?) warning whenever I try to play a sound in my project, which causes quite a delay. To try to solve the

[android-developers] Re: CamcorderProfile

2011-03-22 Thread b_t
Oh, I understand, thank you On Mar 22, 9:26 am, Marcin Orlowski webnet.andr...@gmail.com wrote: On 22 March 2011 09:17, b_t bartata...@gmail.com wrote: Hi, My camcorder resolution is set to 1280x720 in my Htc Desire with 2.2. If I get CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH)

Re: [android-developers] NFC Question

2011-03-22 Thread Michael Roland
Hallo Zhihong, [...] I write the tag by Ndef class, but the tag can't be read by any readers application, it cause them crash. [...] NdefRecord record = new NdefRecord( NdefRecord.TNF_WELL_KNOWN, NdefRecord.RTD_TEXT, new byte[0], this is a write tag.getBytes() );

[android-developers] Why can't draw a picture on canvas

2011-03-22 Thread a a
Following is my test code public class testCanvas extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Canvas canvas

[android-developers] How to set static ip for wifi configuration

2011-03-22 Thread saikiran n
Hi I have android device and i want to add one wifi configuration with static ip. I have done this with the following code. WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiConfiguration wc = new WifiConfiguration(); wc.SSID = \MyWifi\; wc.hiddenSSID =

Re: [android-developers] write tag with opengl on android

2011-03-22 Thread a a
Following is my test code, but it can't drawable. public class testCanvas extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Re: How to get my device's source code?

2011-03-22 Thread Zsolt Vasvari
On Mar 22, 4:44 pm, Nesim TUNÇ nesimt...@gmail.com wrote: No, I mean compiled code. I need reverse the compiled code to source code. I seek something like that. If the source code is NOT available at the link provided, it is because it's propiatary and decompiling it is against the license in

Re: [android-developers] Re: write tag with opengl on android

2011-03-22 Thread a a
sorry, it seams better and light to use canvas to draw the text on the bitmap. anyway, thanks for your help. 2011/3/22 Lance Nanek lna...@gmail.com: I just draw a character at a time, so I can draw anything. I use char[] instead of String so I can preallocate and avoid garbage collection. You

[android-developers] How to access files in sdcard from the server running in android

2011-03-22 Thread SREEHARI
Hi, I have developed an application in which the files from the emulator should be accessible in the web browser in my desktop. I am using i- jetty server which is running in the emulator. I am able to access the music files which are stored in the project's webapps/app_name/ folder using HTML5

Re: [android-developers] Bud setAdapter of AbsListView

2011-03-22 Thread Sergey Okhotny
E/AndroidRuntime(14762): FATAL EXCEPTION: main E/AndroidRuntime(14762): java.lang.NoSuchMethodError: android.widget.AbsListView.setAdapter E/AndroidRuntime(14762):at com.reader.android.LocalStore.bindAdapters(LocalStore.java:534) E/AndroidRuntime(14762):at

Re: [android-developers] How to set static ip for wifi configuration

2011-03-22 Thread Kostya Vasilyev
See this: http://developer.android.com/reference/android/provider/Settings.System.html#WIFI_STATIC_DNS1 Go ahead and use them before they are moved under Settings.Secure :) -- Kostya 22.03.2011 12:17, saikiran n ?: Hi I have android device and i want to add one wifi configuration with

[android-developers] Wrong widthPixels?

2011-03-22 Thread CaryWang
DisplayMetrics dm = new DisplayMetrics(); dm=getResources().getDisplayMetrics(); int width=dm.widthPixels int height=dm.heightPixels W shoud be 480 and H shoud be 854 But for me W is 320 and H is 536.What am I doing wrong??? -- Cary -- You received this message because you are subscribed to

[android-developers] Re: How to declare Button as global object????

2011-03-22 Thread harsh chandel
Declare a method to add button in a function and add setonclicklistner method on the button in the onclicklstner method do whatever you want to do with the button On Mar 15, 5:04 pm, DanH danhi...@ieee.org wrote: PS:  You can probably skip chapters 13 and 15. On Mar 15, 4:53 am, Ponraj

[android-developers] Re: bitmap size exceeds VM budget on BitmapFactory.decodeResource

2011-03-22 Thread String
As someone who's done a bunch of similar work, I'm afraid the short answer is: you can't do that. The slightly longer answer: As your math shows, simply loading the WVGA-scale bitmaps blows out the 16MB limit. Now, my understanding is that a Galaxy S should have 24MB of heap, but still -

Re: [android-developers] Wrong widthPixels?

2011-03-22 Thread Kostya Vasilyev
Make sure that in the manifest, you either have: uses-sdk android:minSdkVersion=4 / or supports-screens android:smallScreens=true android:normalScreens=true android:largeScreens=true android:anyDensity=true / -- Kostya 22.03.2011 13:01, CaryWang пишет: DisplayMetrics dm = new

[android-developers] Re: write tag with opengl on android

2011-03-22 Thread Lance Nanek
Depends on your use case. In my case I was rendering UI and scores in full screen OpenGL games. The scores changed frequently, so rendering them to a bitmap and uploading that as a texture would be terrible for the frame rate compared to never having to change the textures. Similarly, overlaying

Re: [android-developers] Wrong widthPixels?

2011-03-22 Thread CaryWang
if i don't want add code to XML.Are there any other method. 2011/3/22 Kostya Vasilyev kmans...@gmail.com Make sure that in the manifest, you either have: uses-sdk android:minSdkVersion=4 / or supports-screens android:smallScreens=true android:normalScreens=true

[android-developers] Re: ideal system configuration for developing Android 3 apps

2011-03-22 Thread String
And if you're not in the USA, you're kinda screwed for Honeycomb development. String -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Service stops after 10 minutes of standby

2011-03-22 Thread lbendlin
WakeLocks are evil. Are you sure the service is actually stopping or maybe (based on your criteria) it just doesn't have a new position to tell about? On Mar 21, 11:30 pm, Chris Stewart cstewart...@gmail.com wrote: As Nick mentioned, you'll want to look into a wake lock.  I would highly

[android-developers] Re: Why can't draw a picture on canvas

2011-03-22 Thread Nicholas Johnson
It appears, by your code, that you *are* drawing on the bitmap through the canvas. However, I'm guessing your *real* question is: why is my bitmap not being displayed on the screen? Well, that's because your bitmap or canvas is not associated at all with any buffers which finally get displayed

[android-developers] Re: Hi... Flocks

2011-03-22 Thread lbendlin
Namatse, I guess. On Mar 21, 7:34 am, Narendra Padala checksumandr...@gmail.com wrote: Hi..Flocks,       I am new to android, up to now i am java/j2ee/php/cakephp web developer now i move on to android, please give some suggestion to learn very quickly Android, -- You received this message

[android-developers] Re: android licensing: when do we need generate new key pair

2011-03-22 Thread lbendlin
If you lose your old key, maybe? On Mar 21, 9:34 pm, veetowner veetow...@gmail.com wrote: I am reading Android Application Licensing. It uses a key pair to check license. The document also says that Note that if you decide to generate a new licensing key pair for your account for some

[android-developers] How to access other application's resources?

2011-03-22 Thread sandy
hi, I want to know whether can i access other application's resources like application's buttons,views etc from another application. I tried the following: res = pm.getResourcesForApplication(com.example); int i = res.getIdentifier(button1, id, com.example); But the problem is,eventhough i am

[android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Zsolt Vasvari
I have one word to sum it up as: Hooray!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: How to access other application's resources?

2011-03-22 Thread Zsolt Vasvari
I want to know whether can i access other application's resources like application's buttons,views etc from another application. N -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Need Information about System update in android

2011-03-22 Thread deeps
Hi, In our project we need to provide firmware upgrade feature to the product. We are using android 2.2 in our product. We are using NAND flash to store linux and file system. Our requirement is download the update.zip from PC to SD card and put the SD card in to the product and update the

[android-developers] Re: android licensing: when do we need generate new key pair

2011-03-22 Thread Nicholas Johnson
You old key expires? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For

[android-developers] Re: ideal system configuration for developing Android 3 apps

2011-03-22 Thread j.s. mammen
I am not in US and I really dont want to buy new hardware to develop for Android as its only an hobby and learning tool. I was looking for any optimization anyone has done on their system, such as increasing the default JVM memory, increasing the default stack space etc. On Mar 22, 3:11 pm,

Re: [android-developers] Re: Activity lifecycle... still a mystery to me

2011-03-22 Thread Mark Murphy
On Mon, Mar 21, 2011 at 10:59 PM, DulcetTone dulcett...@gmail.com wrote: My app responds to speech commands. I want the behavior to be that 1.  if back is hit on my initial activity, it exits. That is normal behavior. 2.  My app has a few sub-activities it may launch on user speech- or

Re: [android-developers] Re: Android Application Sold to 100,000 Users

2011-03-22 Thread brian purgert
Well actually the statistics are off by ALOT, because of the number of spam applications and flash apps that completly such and should not really count, i mean some developers have over 300 apps all rated below 3 stars -- You received this message because you are subscribed to the Google

[android-developers] Re: Cloud Computing

2011-03-22 Thread j.s. mammen
On Mar 22, 12:48 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Oh please, leave the guy alone.  He probably got his CS degree from the same school where the Indian pilots get their pilot's licenses. Lets not generalize about indian pilots and stick to the topic of cloud computing, On Mar 22,

[android-developers] Re: ideal system configuration for developing Android 3 apps

2011-03-22 Thread String
I think the point is that the Honeycomb emulator is abominable on every configuration that anyone's reported. Even Google has admitted that it's really bad. AFAIK, nobody's reported any success with improving the situation by tweaking settings, either. Why don't you do that, and let us know

Re: [android-developers] Need Information about System update in android

2011-03-22 Thread Marcin Orlowski
product. We are using android 2.2 in our product. We are using NAND Your asking on wrong group. Regards, Marcin Orlowski Tray Agenda http://bit.ly/trayagenda - keep you daily schedule handy... -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: ideal system configuration for developing Android 3 apps

2011-03-22 Thread Mark Murphy
Actually, bumping the RAM helps a bit. hw.ramSize (Device RAM size) of 1024, if you have enough memory on your development machine, does improve performance. It is still fairly dreadful, but I couldn't even get it to boot with whatever the default was. On Tue, Mar 22, 2011 at 7:19 AM, String

[android-developers] Re: android RelativeLaout's children can't modify the ones that are based on them.

2011-03-22 Thread lbendlin
is it maybe related to this? Note that you cannot have a circular dependency between the size of the RelativeLayout and the position of its children. For example, you cannot have a RelativeLayout whose height is set to WRAP_CONTENT and a child set to ALIGN_PARENT_BOTTOM. On Mar 20, 2:56 pm,

[android-developers] Re: What exactly is the obtainBuffer in an AudioTrack?

2011-03-22 Thread emymrin
how can I prevent (or at least minimize) the delay When AudioTrack object is created, buffer size is passed into a constructor among other parameters. AudioTrack won't start playing until you write at least that amount of data into it. I presume that in your case chosen buffer size is

[android-developers] Re: Help using custom Preference types - for pity or money

2011-03-22 Thread lbendlin
nothing is stopping you from learning how to do that - based on the link I provided, and on the Preferences documentation. On Mar 21, 8:38 pm, Peter Webb r.peter.w...@gmail.com wrote: Thanks - But I already have two suitable color Preferences classes which I downloaded from the net - neither

Re: [android-developers] Re: Help using custom Preference types - for pity or money

2011-03-22 Thread Mark Murphy
On Tue, Mar 22, 2011 at 7:35 AM, lbendlin l...@bendlin.us wrote: nothing is stopping you from learning how to do that - based on  the link I provided, and on the Preferences documentation. FWIW, here is Yet Another Color Mixer, in the form of a custom View, custom Preference, and custom Dialog:

[android-developers] How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-22 Thread vamsi
Hi In android voice recognition, Can any one know how to increase the amount of time that it should take after we stop hearing speech to consider the input possibly complete. I need to prevent the endpointer cutting off during very short mid-speech pauses while voice recognition. If anyone knows

[android-developers] Re: What exactly is the obtainBuffer in an AudioTrack?

2011-03-22 Thread ThaMe90
Hmm, I'd rather solve it, as it is the only viable explanation left for why I have delays in playing... As I've said in my first post, I've tried playing with the buffersize of the AudioTrack, but to no avail. The only lead to a solution I have atm. is the warning, so I can't ignore it... On 22

Re: [android-developers] Re: how to reload previous activity on back button click

2011-03-22 Thread Filip Havlicek
Hi Ranveer, maybe refreshing the contents in the history Activity's onResume() method would be sufficient for your needs. Best regards, Filip Havlicek 2011/3/22 harsh chandel harshdchan...@gmail.com @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode ==

[android-developers] Re: What exactly is the obtainBuffer in an AudioTrack?

2011-03-22 Thread ThaMe90
On a side note, I am developing for Android 2.2 minimum. And I use a real device to test everything. I've stopped using the Emulator for sound related topics, as I never got the sound working in the Emulator at all... See a previous post on this:

Re: [android-developers] How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-22 Thread Filip Havlicek
Hi vamsi, check this RecognizerIntent extra http://developer.android.com/reference/android/speech/RecognizerIntent.html#EXTRA_SPEECH_INPUT_COMPLETE_SILENCE_LENGTH_MILLIS Best regards, Filip Havlicek 2011/3/22 vamsi shailajamudathanapa...@gmail.com Hi In android voice recognition, Can any

[android-developers] Re: ideal system configuration for developing Android 3 apps

2011-03-22 Thread j.s. mammen
Thanks Mark for your suggestion. According to the API, the default is 96MB RAM which I am not sure applies to all versions of API. I will try your suggestions and other hardware options mentioned in API and update this thread. -jm On Mar 22, 4:23 pm, Mark Murphy mmur...@commonsware.com wrote:

[android-developers] Re: Package file was not signed correctly error

2011-03-22 Thread Anders
Oh brother, that was easy :) Uninstall, then reinstall fixed the problem (and none of my 600 users ever had a problem). Thanks! Anders On Mar 22, 12:47 am, Justin Anderson magouyaw...@gmail.com wrote: Or vice-versa...  It happens either way. Thanks, Justin Anderson MagouyaWare

[android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Mark Sharpley
Zsolt Vasvari zvasv...@gmail.com Mar 22 03:47AM -0700 I have one word to sum it up as: Hooray!! It is only open for US of A customers though :( -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread String
Amazon almost always introduces new services on their home turf first. Other countries will come. I'm just happy that, at the moment, one of my apps is #1 in its category. Open in the USA only is better than not open at all! String -- You received this message because you are subscribed to

[android-developers] Re: 2.3.3 View setVisibility bug?

2011-03-22 Thread Christopher Lester
I am having this exact problem right now. If I use android:visibility=invisible in the XML then setting them to visible does nothing, no matter how I call it. Weird and annoying. C On Mar 5, 3:52 pm, Jeremy Statz jst...@gmail.com wrote: One of my products has an activity with three

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Ralf Schneider
The Amazon Appstore for Android is not yet available in your region. Beside the small problem I can not install an app it looks great! My first impression is very positive.I like the user interface on the phone and on the website. Now the Android Market sucks even more. 2011/3/22 Zsolt Vasvari

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Justin Giles
Awesome! Or maybe not awesome...they have a Test Drive Now feature that opens up a web based emulator to run your app for 30 minutes as a trial. Don't know how I feel about this. On Tue, Mar 22, 2011 at 7:33 AM, Ralf Schneider li...@gestaltgeber.comwrote: The Amazon Appstore for Android is

[android-developers] Re: Android Beginner Having Problems

2011-03-22 Thread lbendlin
Are your imports listed? import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; On Mar 20, 12:46 am, Matt Clark mrclark32...@gmail.com wrote: I tried using the MenuInflation off of the android developers site: @Override public boolean

[android-developers] Re: Is the RTSP streaming on android secure

2011-03-22 Thread lbendlin
I don't think it is, but it's kind of a moot point anyhow as RTSP is broken on 2.3.3+ On Mar 20, 1:59 pm, viv sangeeta.mu...@gmail.com wrote: I am trying to build a media player and the content is under DRM. I have read that you can reconstruct the media packets on the client by sniffing

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Mark Murphy
On Tue, Mar 22, 2011 at 8:43 AM, Justin Giles jtgi...@gmail.com wrote: Awesome!  Or maybe not awesome...they have a Test Drive Now feature that opens up a web based emulator to run your app for 30 minutes as a trial.  Don't know how I feel about this. Web-based emulator? Ignoring the business

[android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread webmonkey
Angry Birds Rio is getting a lot of 1-star reviews form non-US users who are unable to get the app. I have even seen a review from an iPad user who was unable to download the app via Safari. How on earth is it possible that these users can review the app! It is the Android Market all over again.

[android-developers] Android API 10

2011-03-22 Thread rishabh agrawal
When i run my apps on emulator API 8 then it run correctly.But when i run my apps on API 10 then it get unexpected error.it is RunTime error.I use DualCore processer .i thing that the speed of my PC is slow that why that error are created.i am right or not.please suggest me how to remove that

[android-developers] MotionEvent.getEdgeFlags() never reports non-zero value

2011-03-22 Thread Paul
Looking over older posts, I found this: http://groups.google.com/group/android-developers/browse_thread/thread/a55db4c49b12248d So it's 2011 now, and I am using the emulator and a Galaxy Tab both running 2.2, and I can't for the life of me get the MotionEvent's passed from a simple full-screen

Re: [android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread Marcin Orlowski
On 22 March 2011 13:52, webmonkey webmonke...@gmail.com wrote: Angry Birds Rio is getting a lot of 1-star reviews form non-US users who are unable to get the app. I have even seen a review from an iPad user who was unable to download the app via Safari. How on earth is it possible that these

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Marcin Orlowski
On 22 March 2011 13:43, Justin Giles jtgi...@gmail.com wrote: Awesome! Or maybe not awesome...they have a Test Drive Now feature that opens up a web based emulator to run your app for 30 minutes as a trial. Where exactly did you spot that feature? Regards, Marcin Orlowski Tray Agenda

Re: [android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread Ralf Schneider
Yes giving the developers a 1-star rating is not nice. On the other hand I understand the frustration: It's the worldwide internet we are connect to. Apps a virtual goods transfered via the inter-tubes. Payment is done with worldwide operating credit card companies. For a potential customer in

[android-developers] Re: Can somebody suggest the best book or online resource for beginning android apps development?

2011-03-22 Thread kernelpanic
I have to agree - http://commonsware.com/ - helped me a lot when I was first starting and is still something I refer to frequently. On Mar 21, 6:51 am, Narendra Padala checksumandr...@gmail.com wrote: Hi Flocks, Can somebody suggest the best book or online resource for beginning android apps

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Chris Stewart
I really don't like _how_ you have to get the Appstore app itself. I suppose that's because it's an Appstore within the Market itself. Asking users to enable unknown sources doesn't seem like a good idea. I bet my mom would be confused as hell over this. -- Chris Stewart

[android-developers] Re: Android API 10

2011-03-22 Thread rishabh agrawal
Please Suggest On Mar 22, 5:56 pm, rishabh agrawal android.rish...@gmail.com wrote: When i run my apps on emulator API 8 then  it run correctly.But when i run my apps on API 10 then it get unexpected error.it is RunTime error.I use DualCore processer .i thing that the speed of my PC is slow

[android-developers] Re: Android App Tracker - market rank tool

2011-03-22 Thread Jake Colman
CL == Corey Ledin Corey writes: CL Hi All, CL I have yet to contribute to this group just start off by saying CL hi and if you haven't heard of me I developed Beer Pong Free for CL the android and iPhone etc. Recently I was trying to find a CL decent app rank website for the

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Justin Giles
On 22 March 2011 13:43, Justin Giles jtgi...@gmail.com wrote: Awesome! Or maybe not awesome...they have a Test Drive Now feature that opens up a web based emulator to run your app for 30 minutes as a trial. Where exactly did you spot that feature? I just looked up one of my apps Word

Re: [android-developers] Re: Android API 10

2011-03-22 Thread Marcin Orlowski
On 22 March 2011 14:19, rishabh agrawal android.rish...@gmail.com wrote: Please Suggest Don't bump after 3 seconds!. Stay in the line and wait for anyone's answer (if any) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Regarding Image Fetching

2011-03-22 Thread yogendra G
Hi All, How To Fetch Image From my own database...?? Am getting Null Pointer Exception While am Running my app... Cursor cr; ImageView myImage = (ImageView) findViewById(R.id.image); byte[] bb = cr.getBlob(cr.getColumnIndex(pharmPic)); Bitmap bm =

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Marcin Orlowski
Awesome! Or maybe not awesome...they have a Test Drive Now feature that opens up a web based emulator to run your app for 30 minutes as a trial. Where exactly did you spot that feature? I just looked up one of my apps Word Mix. Below the pricing information there was a big green

[android-developers] Re: Android 3.0 Starter Pack - XML Verification Error

2011-03-22 Thread learner1980
Hi, i was finally able to resolve this issue. i am sharing this information as it might be useful for someone else. i was facing this issue because the language setting on my PC was 'Hindi'. Once i changed back the Language to english it worked. On Mar 21, 9:32 pm, learner1980

[android-developers] Re: installing sdk

2011-03-22 Thread learner1980
Hi Chris, Thanks for your reply. i was finally able to resolve this issue. i am sharing this information as it might be useful for someone else. i was facing this issue because the language setting on my PC was 'Hindi'. Once i changed back the Language to english it worked. Now I am just

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Chris Stewart
I really just wish that Google would bite the bullet and implement some of the much needed features for the Android Market. I'm not unhappy with what's there and I know the individuals are putting in serious effort, so I don't want my comment to come off as a snub to those developers. I really

Re: [android-developers] Amazon Appmarket is now open!

2011-03-22 Thread Justin Giles
Hm, I do not see anythink like that for app you named - make sure you wasn't logged. I swear it's there for my apps, even when I'm not logged into Amazon. But I'm like others...I can't seem to find it on other apps...ah wait! Found it on another app Impossible Level Game LITE. Here's the

[android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread niko20
Well crap, my apps' description is entirely missing for some reason. Well that's the Amazon experience I've been having all along with this thing...really feels half assed pretty much always... -n On Mar 22, 8:35 am, Justin Giles jtgi...@gmail.com wrote: Hm, I do not see anythink like that for

[android-developers] Show activities in gallery

2011-03-22 Thread mboehmer
How can I start several activities in parallel and present them all together in a galley? I want the user to be able to scroll through the activities like he does in a gallery. A tab does not exactly present the same user experience of scrolling. -- You received this message because you are

[android-developers] parse json response containing html tags

2011-03-22 Thread Hitendrasinh Gohil
hi, i am getting html tags in json response likep,href so how i can parse it. thankx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

Re: [android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread Jonas Petersson
On 2011-03-22 14:42, niko20 wrote: Well crap, my apps' description is entirely missing for some reason. Well that's the Amazon experience I've been having all along with this thing...really feels half assed pretty much always... Well, one of my apps was refused since I had a reference to

[android-developers] Internet for the App

2011-03-22 Thread Christopher Marchfelder
Hello Folks, I hope you can help me with a special problem I have. The android app I am developing requires the internet for every activity (data will be submitted to the server). My question is: how can I get notified when the connection breaks down/gets up again? Is there any good solution?

Re: [android-developers] Re: Amazon Appmarket is now open!

2011-03-22 Thread TreKing
Do you guy's apps have the original descriptions and bullet points you submitted? It seems like Amazon just wrote their own marketing descriptions ... - TreKing

  1   2   3   4   >