Re: [android-developers] Re: Invoking ACRA from within the application

2012-09-12 Thread Ika Balzam
Hi Kevin, I've missed that ;) That was exactly what I was looking for! Thank you very much! Ika On Wed, Sep 12, 2012 at 8:19 AM, Kevin Gaudin kevin.gau...@gmail.comwrote: Hi, ACRA related questions can be best answered on the acra-discuss group.

[android-developers] database for content provider

2012-09-12 Thread Ehsan Sadeghi
I create a database file by sqlitebrowser and copy it in data/data/ir.smspeik.sms/databases/mydb1. How can I use it as a content provider in my app? Which Uri I must use to declare it? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: print integer value in logcat.

2012-09-12 Thread Lew
Lew wrote: jb wrote: Most simple approach: int x; System.err.println(x=+x); Will show in LogCat. Not normally, no, it won't. By default, the Android system sends stdout and stderr (System.out and System.err) output to /dev/null.

Re: [android-developers] How can I put different resources for different dpi on ICS with the same sw800dp smallest width?

2012-09-12 Thread Jonas Petersson
Hi, Sorry to bump in late to this discussion, but I've noticed something related to this that you may want to be aware of: One of our customers insist that we use only EXACTLY the graphic elements that their design, but for some reason we got the latest images in GIF format rather than PNG.

[android-developers] App not compatible on Galaxy Tab 2.0?

2012-09-12 Thread Pieter
I am getting some complaints from users with a Samsung Galaxy Tab 2.0 (7.0 but possible also on 10.0). It seems that they get a This app is not compatible message when installing our app. Now the app is on the market for over 2 years so my first instinct was that it might not be compatible

[android-developers] Listview Selector

2012-09-12 Thread Lars
Hi i got a problem with a listview, how can i get to change the state when my listview item is selected (in the use of multipane view) i only need to change that state the other states like pressed and things i like to keep default Thanks -- You received this message because you are

[android-developers] Re: App not compatible on Galaxy Tab 2.0?

2012-09-12 Thread RichardC
Is this a typo? uses-feature name=android.hardware.camera / It should be: uses-feature android:name=android.hardware.camera / On Wednesday, September 12, 2012 8:26:21 AM UTC+1, Pieter wrote: I am getting some complaints from users with a Samsung Galaxy Tab 2.0 (7.0 but possible also on

Re: [android-developers] Transfering VBO's between a loader and renderer.

2012-09-12 Thread Fabien R
On 11/09/2012 01:58, Braindrool wrote: To summarize that, it loads in all models and adds them to an array successfully. Problem is not there. How would I go about actually creating the VBO's and implementing them into an OpenGL ES 1 renderer? You may feed the VBOs in the renderer's

[android-developers] Creating keystore BKS for https android connection

2012-09-12 Thread Иван Дунский
I found tutorialhttp://blog.crazybob.org/2010/02/android-trusting-ssl-certificates.html which describes how create and use keystore for https connection. But I have very noob question: where should i put this code to create keystore? at the openssl command promt or in keytool key prompt.

[android-developers] Re: App not compatible on Galaxy Tab 2.0?

2012-09-12 Thread Pieter
Thanks for setting me on the right track!!! It seems my problem is caused by the typo in my AndroidManifest.xml you pointed out. http://davidjhinson.wordpress.com/2010/09/14/android-market-filtering-and-androidmanifest-xml/ Because of the erroneous 'name' attribute instead of 'android:name'

Re: [android-developers] Listview Selector

2012-09-12 Thread Kostya Vasilyev
Here is how I do it: ?xml version=1.0 encoding=utf-8? selector xmlns:android=http://schemas.android.com/apk/res/android; item android:drawable=@android:color/transparent android:state_pressed=true/ item android:drawable=@android:color/transparent android:state_selected=true/ item

Re: [android-developers] check if pressed within circle

2012-09-12 Thread Harri Smått
On Sep 12, 2012, at 5:09 AM, iQue max.nielse...@gmail.com wrote: this gives a weird result where 90% of the time the stick will set its position to 0,0 when I try to use it. Yup, I made a huge mistake there. Here's revised code; Point imageCenter = new Point(25, 25); Point touchPos =

[android-developers] Re: check if pressed within circle

2012-09-12 Thread iQue
Alright, so I change the previous code to this: int imgCenterX = initx - joystick.get_joystickBg().getWidth()/2 - 50; int imgCenterY = inity - joystick.get_joystickBg().getHeight()/2 - 50; Point imgCenter = new Point(imgCenterX, imgCenterY); int

Re: [android-developers] check if pressed within circle

2012-09-12 Thread Harri Smått
On Sep 12, 2012, at 1:31 PM, iQue max.nielse...@gmail.com wrote: Alright, so I change the previous code to this: int imgCenterX = initx - joystick.get_joystickBg().getWidth()/2 - 50; int imgCenterY = inity - joystick.get_joystickBg().getHeight()/2 - 50;

[android-developers] Re: check if pressed within circle

2012-09-12 Thread iQue
thanks for taking your time to help me. It ALMOST works now, the stick acts lke imgCenterY and imgCenterX is a bit further down then they really are. I know I'm using the right positions cus if I draw a circle at that position it gets drawn in the exact middle of my joystickBG. this is how

[android-developers] Re: check if pressed within circle

2012-09-12 Thread iQue
thanks for taking the time to help me. It ALMOST works now, the stick acts lke imgCenterY and imgCenterX is a bit further down then they really are. I know I'm using the right positions cus if I draw a circle at that position it gets drawn in the exact middle of my joystickBG. this is how I

[android-developers] Re: check if pressed within circle

2012-09-12 Thread iQue
thanks for taking your time to help me. It ALMOST works now, the stick acts lke imgCenterY and imgCenterX is a bit further down then they really are. I know I'm using the right positions cus if I draw a circle at that position it gets drawn in the exact middle of my joystickBG. this is how

[android-developers] Find location of status bar.

2012-09-12 Thread hwrdprkns
Greetings, I'm using DecorView to insert my own sliding menu (like Facebook, Spotify, etc) but I'm wondering if its possible to tell where the status bar is, as I need to offset my view appropriately. For example, on tablets the status bar is *usually * at the bottom, except on the Nexus 7

[android-developers] Re: Find location of status bar.

2012-09-12 Thread RichardC
I don't understand why you need to offset your view. Doesn't your view automatically fill the available space and not overlap any other view/widget? If it does please could you explain in more detail what you have done. On Wednesday, September 12, 2012 12:25:53 PM UTC+1, hwrdprkns wrote:

Re: [android-developers] Re: check if pressed within circle

2012-09-12 Thread Harri Smått
On Sep 12, 2012, at 1:59 PM, iQue max.nielse...@gmail.com wrote: thanks for taking your time to help me. It ALMOST works now, the stick acts lke imgCenterY and imgCenterX is a bit further down then they really are. I know I'm using the right positions cus if I draw a circle at that

[android-developers] Droid Vector Live Wallpaper HD

2012-09-12 Thread Joao Braga
Guys, here is my 1st app on Google Play. https://play.google.com/store/apps/details?id=vector.android.wallpaperfeature=search_result#?t=W251bGwsMSwxLDEsInZlY3Rvci5hbmRyb2lkLndhbGxwYXBlciJd It's a live wallpaper totally vectorial. I used in it part of a game engine I'm currently developing with my

[android-developers] insert data single time to the sqlite database programatically ?

2012-09-12 Thread mohammed Nuhail
How to insert data single time in the sqlite database with multiple reads ? -- 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

Re: [android-developers] Creating keystore BKS for https android connection

2012-09-12 Thread Nikolay Elenkov
On Wed, Sep 12, 2012 at 5:44 PM, Иван Дунский i.duns...@gmail.com wrote: I found tutorial which describes how create and use keystore for https connection. But I have very noob question: where should i put this code to create keystore? at the openssl command promt or in keytool key prompt.

[android-developers] Re: custom listview delete the corresponding row

2012-09-12 Thread arun kumar
costobject value :000120 is changed to 000180 On Wed, Sep 12, 2012 at 5:23 PM, arun kumar arun.kata...@gmail.com wrote: Hello , am having acustom list view in that products are there .when i click on that products it will be saved in the *Arraylist that arraylist * are giving to the another

Re: [android-developers] Droid Vector Live Wallpaper HD

2012-09-12 Thread Asheesh Arya
keep it up -- 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 more

Re: [android-developers] Re: check if pressed within circle

2012-09-12 Thread iQue
if I change imgPos to (initx - 100, inity - 100) it works perfectly. But I really need to find a better way to calculate the middle, Ill keep working on this cus that shouldnt be to hard. Thank you so so so much for helping me with this, spent endless hours on it. So thank you! You could

[android-developers] Bluetooth Pairing problem

2012-09-12 Thread HPP
Hai all I am making an application for sending data from my phone to another device using blue-tooth..I am using the bluetooth chat example that comes along with the SDK sample for my code . I need to pair my device with the other device after device discovery.But in chat

[android-developers] json format

2012-09-12 Thread rauf qureshi
hello everyone, JSONObject json=new JSONObject(); json.put(date,25/10/2012); in above code when i send this request to server date automatic converted into following format 25/\10/\2012 can any body tell me how to send date on the server using json in 25/10/2012 format. Thanks in advance --

[android-developers] Re: Android MediaPlayer sometimes stops playing a sound file early

2012-09-12 Thread Ian Warwick
I know this is old but recently had this issue with older devices, particularly a Samsung Galaxy S running 2.2. What you said about the 300ms seems to be correct, and the issue is because you release the media player in the onCompletion(...) listener, a work around would be to delay the

[android-developers] Add Contacts to Android Native Phone Book

2012-09-12 Thread akash
Hi, I am Adding Some Contacts to Native Android Phone Book, After executing below code i am able to see the person in my android phone book, but when i open the contact card of the person i inserted, contact card crashes. Below is my code. public static void insertAndroidContact(Context

Re: [android-developers] Re: print integer value in logcat.

2012-09-12 Thread pharaoh
Thanks for pointing that out! I wasn't aware of the existence of that method. Terça-feira, 11 de Setembro de 2012 14:29:10 UTC+1, andrewg_oz escreveu: On 11 September 2012 20:44, pharaoh edelcides...@gmail.com javascript:wrote: Try this solution : (...) int age = 22; Log.d(MY_TAG, new

[android-developers] Re: I had android doubt please go to link and give your suggestions.

2012-09-12 Thread Steve
I understand you are sincerely looking for help, and I'm sure it's important to you, but...you've listed four groups and ten individuals, not counting this group, and it's a link to your post on a forum. Is this, perhaps, a bit...much? On Tuesday, September 11, 2012 7:56:27 AM UTC-4,

Re: [android-developers] json format

2012-09-12 Thread Harri Smått
On Sep 12, 2012, at 3:40 PM, rauf qureshi qureshira...@gmail.com wrote: in above code when i send this request to server date automatic converted into following format 25/\10/\2012 can any body tell me how to send date on the server using json in 25/10/2012 format. It's the other way

[android-developers] Suggestion of Augmented Reality SDK?

2012-09-12 Thread Duygu Kahraman
I am interested in augmented reality but i am newbei about this topic.I read some suggesstion about SDK.I download metaio,wikitude,vuforia sdk but i can not run sample of them.Can anybody face this problem? if it is not can anybody suggest some SDK about AR? OR some link related AR step by

[android-developers] Re: Rotate image around it's centre problem with matrix rotation

2012-09-12 Thread bob
Well, for one thing, this is not right: canvas.rotate(angle, X + getWidth() 1, Y + getHeight() 1); You should be calling getWidth and getHeight on the bitmap. Something like this: canvas.rotate(angle, X + resizedBitmap.getWidth()/2, Y + resizedBitmap.getHeight()/2); On Tuesday, September

[android-developers] Re: how to use the android.bluetooth; package.??

2012-09-12 Thread bob
There is a BluetoothChat sample that demonstrates the usage. On Tuesday, September 11, 2012 8:11:48 PM UTC-5, redwolfgang20 wrote: -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] json format

2012-09-12 Thread John Coryat
or... switch to '-' instead... -John Coryat On Wednesday, September 12, 2012 9:12:40 AM UTC-5, Harri Smått wrote: On Sep 12, 2012, at 3:40 PM, rauf qureshi quresh...@gmail.comjavascript: wrote: in above code when i send this request to server date automatic converted into following

[android-developers] Editing XML file with Java

2012-09-12 Thread Shoaib Dar
I want to edit an existing xml layout, using Java. I thought the following 2 lines would work. but Android does not display the layout. what am i doing wrong? ScrollView sv = (ScrollView)findViewById(R.layout.main_scrollview_layout); setContentView(sv); Also does anyone know how i can set

[android-developers] Attach Source?

2012-09-12 Thread bob
Do you guys ever do an Attach Source with the Android source code so you can go in there for debugging? Or is this probably not worth the hassle? https://lh4.googleusercontent.com/-ttLdGKVToOo/UFCulnPxzjI/AAk/JgbylRZUkrk/s1600/Screen+Shot+2012-09-12+at+10.45.55+AM.png -- You

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-12 Thread NikDmit
Thank you, for your response. I'm sorry, I've removed my last post. Actually it doesn't work. You see, if you'll define a new matrix and set it up for the canvas, everything will be moved up by 100 pixels. And that is not, what I expected. It seems, that the only option is to draw the line on

Re: [android-developers] json format

2012-09-12 Thread rauf qureshi
Thanks friends to comment. i have solved this problem just pass your string with 25\\10\\2012 On Wed, Sep 12, 2012 at 8:16 PM, John Coryat cor...@gmail.com wrote: or... switch to '-' instead... -John Coryat On Wednesday, September 12, 2012 9:12:40 AM UTC-5, Harri Smått wrote: On Sep

Re: [android-developers] in java file Russian chars for Strings...means works in all phones

2012-09-12 Thread lselwd
*1.* *STATEMENTS LIKE: * wiki.setMessage(getResources().getString(R.string.goToWikipedia,country)); *// IF goToWikipedia IS IN RUSSIAN, DO NOT WORK...ERROR APPEAR GAME SHUT DOWNS...WELL?* *2.* *return* name.substring(getResources().getString(R.*countries*.name).replace('_', ' '*)*; * //

Re: [android-developers] database for content provider

2012-09-12 Thread Felipe Silveira
You need first to create a subclass of content provider. Take a look: http://developer.android.com/guide/topics/providers/content-providers.html On Wed, Sep 12, 2012 at 4:02 AM, Ehsan Sadeghi esade...@gmail.com wrote: I create a database file by sqlitebrowser and copy it in

[android-developers] EditText without initial keyboard

2012-09-12 Thread Ravin
Does anyone know how to configure an EditText object so that when it is created it does not show the keyboard until I tap on the text field. Right now the keyboard shows up right away on creation. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] How to install apks from google play market into Emulator???

2012-09-12 Thread Sohan badaya
Hi, I want to install apps from google market into emulator. I don't have device. I googled a lot and find out that I must have to have Google play store app in emulator. Then i installed this app using below steps, adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system adb

Re: [android-developers] EditText without initial keyboard

2012-09-12 Thread Mark Murphy
On Wed, Sep 12, 2012 at 12:51 PM, Ravin rperi...@yahoo.com wrote: Does anyone know how to configure an EditText object so that when it is created it does not show the keyboard until I tap on the text field. Right now the keyboard shows up right away on creation. Give some other widget the

Re: [android-developers] EditText without initial keyboard

2012-09-12 Thread Ravin
Okay thanks - I will try that. btw I have your books and have found them well written and very useful for anyone learning Android development. On Wednesday, September 12, 2012 9:57:49 AM UTC-7, Mark Murphy (a Commons Guy) wrote: On Wed, Sep 12, 2012 at 12:51 PM, Ravin rper...@yahoo.com

Re: [android-developers] EditText without initial keyboard

2012-09-12 Thread Harri Smått
On Sep 12, 2012, at 7:51 PM, Ravin rperi...@yahoo.com wrote: Does anyone know how to configure an EditText object so that when it is created it does not show the keyboard until I tap on the text field. Right now the keyboard shows up right away on creation. I've used following code snippet

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-12 Thread Lew
On Tuesday, September 11, 2012 7:24:57 PM UTC-7, Arjun wrote: Yes, i used this code package com.android.comera Don't use 'com.android.*' for your own code unless you own the android.com domain. import com.jayway.android.robotium.solo.Solo; import

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-12 Thread bob
How about this? final Matrix backup_matrix = canvas.getMatrix(); // do whatever rotation, etc… drawing canvas.setMatrix(backup_matrix); On Wednesday, September 12, 2012 11:02:15 AM UTC-5, NikDmit wrote: Thank you, for your response. I'm sorry, I've removed my last post. Actually it

[android-developers] Re: Find location of status bar.

2012-09-12 Thread hwrdprkns
You are totally right, the status bar didn't end up mattering at all because out window is always drawn out of it. On Wednesday, September 12, 2012 4:35:30 AM UTC-7, RichardC wrote: I don't understand why you need to offset your view. Doesn't your view automatically fill the available

[android-developers] Re: Find location of status bar.

2012-09-12 Thread hwrdprkns
That is not the case. If I draw my view the status bar can sometimes obscure it if I dont' set the right height. Furthermore, there are some tablets where the status bar is at the top, and some tablets where it isn't. So I need to find a way not only to get the height of the status bar, but a

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-12 Thread NikDmit
Thank you for you answer! I guess that will do. But I found out important thing in API's, there are two methods related to this problem ( save and restore ) in Canvas class. Also, I played a bit around with rotation and there is another way to rotate only one shape on the canvas:

Re: [android-developers] Re: Find location of status bar.

2012-09-12 Thread Kostya Vasilyev
If you've got a view (any view) within your activity's content, you can call: view.getWindowVisibleDisplayFrame http://developer.android.com/reference/android/view/View.html#getWindowVisibleDisplayFrame(android.graphics.Rect) Retrieve the overall visible display size in which the window this

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-12 Thread mallikarjun gudisagar
Thanks a lot for your reply, In android Camera view(After capturing we are viewing the images) option is it the other application? I mean is open the other application to to show the Captured images. Sorry but i have little confusion. and in that case can we use monkey runner with robotium test

Re: [android-developers] How to install apks from google play market into Emulator???

2012-09-12 Thread Felipe Silveira
Sorry, you cannot use Play Store into the emulator. On Wed, Sep 12, 2012 at 1:54 PM, Sohan badaya sohan.bad...@gmail.comwrote: Hi, I want to install apps from google market into emulator. I don't have device. I googled a lot and find out that I must have to have Google play store app in

Re: [android-developers] Attach Source?

2012-09-12 Thread Kostya Vasilyev
2012/9/12 bob b...@coolfone.comze.com Do you guys ever do an Attach Source with the Android source code so you can go in there for debugging? I do, sometimes. Or is this probably not worth the hassle? In the small number of bugs I can't resolve by looking at logcat messages (which are,

Re: [android-developers] Editing XML file with Java

2012-09-12 Thread TreKing
On Wed, Sep 12, 2012 at 11:45 AM, Shoaib Dar sda...@gmail.com wrote: ScrollView sv = (ScrollView)findViewById(R.layout.main_scrollview_layout); setContentView(sv); This doesn't make sense. findViewByID finds a view withing the Activity's hierarchy, while setContentView sets the View to be the

Re: [android-developers] Editing XML file with Java

2012-09-12 Thread Shoaib Dar
Okay, thanks. but by automatic, i meant that the view should scroll downward without user interaction; at a pace that i can set up. On Wednesday, September 12, 2012 3:41:44 PM UTC-4, TreKing wrote: On Wed, Sep 12, 2012 at 11:45 AM, Shoaib Dar sda...@gmail.comjavascript: wrote: ScrollView

Re: [android-developers] Editing XML file with Java

2012-09-12 Thread TreKing
On Wed, Sep 12, 2012 at 4:11 PM, Shoaib Dar sda...@gmail.com wrote: Okay, thanks. but by automatic, i meant that the view should scroll downward without user interaction; at a pace that i can set up. Call one of the various scroll methods at some rate you define, using a Handler or something.

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-12 Thread bob
The main reason I never use save is because it is not properly documented: public int *save *(int saveFlags) Since: API Level 1http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels Based on saveFlags, can save the current matrix and clip onto a private stack.

[android-developers] NDK: AMotionEvent_getPrecisionX / Y returns 0

2012-09-12 Thread DisableR
Working with Asus Transformer touchpad I need a precision of motion events because touchpad reports X and Y coords of event @2x screen scale. But getPrecision returns 0. Are there other methods to handle the situation with double precision touchpad? -- You received this message because you

[android-developers] time taken to certifying android compatible devices by google

2012-09-12 Thread Ananda Krishna
Hi, How much time is taken to certify a android devices after submitting reports of compatibility test. Any help would be appreciated in this aspect. Regards, AnandaKrishna S -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Android Ice Cream Sandwich 4.0.4

2012-09-12 Thread TurdFergeson
I hate them too. So, statisticly speaking, we're att 100 or 66%, depending on TreKing's opinion. :-) Even that smiley is better than the green poop blobs we have now. Do you have statistical evidence to defend this statement, beyond your own personal opinion? You

[android-developers] Re: SDK Manager does not fetch any package for installation (no error reported)

2012-09-12 Thread Angelo Hannes
I had the same issues. I'm behind a proxy but setting the host:port in the sdk manger options did not work. I solved my problem by starting the sdk manager via command line. I started it like that: PROMPTandroid.bat --clear-cache -v update sdk -u -s --proxy-host 1.234.567.890 --proxy-port 88

[android-developers] Save video stream from Socket to File (from Android app to Java server)

2012-09-12 Thread AlexyFrost
I use my Android application for streaming video from phone camera to my PC Server and need to save them into file on HDD. So, file created and stream successfully saved, but the resulting file can not play with any video player (GOM, KMP, Windows Media Player, VLC etc.) - no picture, no sound,

[android-developers] Re: HDMI Mirroring multiple surface layers not working

2012-09-12 Thread Lalo
We have similar problem, an simple app with a videoview + textview, on many devices works normally, but in a Acer 500 via HDMI it only shows video in full screen El miércoles, 5 de septiembre de 2012 16:00:42 UTC-3, Robert Green escribió: We have 2 layers, 1) SurfaceView with

[android-developers] Is there any way to programmatically press the dialpad during an ongoing call

2012-09-12 Thread AR
Is there any way to programmatically press the dialpad during an ongoing call. I have an ongoing project with a requirement to dial some number automatically during the call. I am also looking to send a pin during an ongoing call. plz help Thanks -- You received this message because you are

[android-developers] Re: no. of downloads is not showing in play

2012-09-12 Thread Janitro
I'm having the same exact issue: number of downloads are not showing in play store or the developer console. I know is a known issue but this is really hurting my app, as I realeased a few day ago and seems no one has downloaded it. On Thursday, September 6, 2012 5:59:22 AM UTC-3, RKJ

[android-developers] Custom media player like Youtube in Android

2012-09-12 Thread Dilip Kumar Chaudhary
I have to create media player like youtube player.Actually if i use VideoView for play video and MediaController for controll video(MediaController only provides play,pause,next,pre and seek options).But in my player i have to add one more option i.e bandwidth(I would have three bandwidth and

[android-developers] Custom media player like Youtube in Android

2012-09-12 Thread Dilip Kumar Chaudhary
I have to create media player like youtube player.Actually if i use VideoView for play video and MediaController for controll video(MediaController onlyu provides play,pause,next,pre and seek options).But in my player i have to add one more option i.e bandwidth(I would have three bandwidth and on

[android-developers] How does ListView Internally Works

2012-09-12 Thread Dilip Kumar Chaudhary
I'm little confused about android *listview*,for data bind, we use Adapters.As far as i know the* getView()*called according to the length of items that we are trying to bind in the listView.So if data length is four then *getView()*will be called for times and it binds data in the

[android-developers] aplication crash

2012-09-12 Thread mATEO
-I wonder what is the error code that displays the following error. The problem is when I change the size and you want to look at the fault lines vkaterih see the latter: 09-10 03:23:48.096: W/KeyCharacterMap(4667): No keyboard for id 0 09-10 03:23:48.106: W/KeyCharacterMap(4667): Using

Re: [android-developers] Need some help with MyFirstApp tutorial.

2012-09-12 Thread Dudley Heath
On Saturday, 25 August 2012 08:02:39 UTC+10, MagouyaWare wrote: Intent intent = new Intent(this, DisplayMessageActivity. I have no idea where to put that... It gives me errors, everywhere I tried. As you said, and according to the tutorial, it belongs inside of the sendMessage()

[android-developers] i cannot able to debug my application on Samsung tab2

2012-09-12 Thread abhinai bondada
i created a application personal certificates, i tried run the application on my tablet, which i used to store images in the db and picks image from sdcard or gallery while i was tyring to pick a image through sdcard in debug mode it shows an error in the logcat as Activity

[android-developers] CallLog is not updated with the last call duration in case of shutdown.

2012-09-12 Thread bobi_nz
Hello everyone, I am quite new to Android and I found one issue (at least ,it's a problem for my app..) with the CallLog database and dying battery. If I'm in a outgoing call and battery drops down - the phone is turned off and when is up again in the CallLog I can see the last number i have

Re: [android-developers] hi..

2012-09-12 Thread Dilip Kumar Chaudhary
Follw http://dilipdevelopment.blogspot.in/2012/05/creeate-database-in-android-using.htmland try to understand how Sqlite can be used in Android. On Wed, Sep 12, 2012 at 10:37 AM, Ibrahim Sada ibrahim.in...@gmail.comwrote: Hello Friends... Help me out how to create multiple tables in

[android-developers] Graphic of installation of my app

2012-09-12 Thread acer1629
Hi ! Why in my app page : https://play.google.com/store/apps/details?id=app.source.imemoryfeature=search_result#?t=W251bGwsMSwyLDEsImFwcC5zb3VyY2UuaW1lbW9yeSJd isn't there a graphic of installations ?? Thanks and regards. -- You received this message because you are subscribed to the

[android-developers] use other websites search engine

2012-09-12 Thread bds
i am developing an app and i want to use another site's search engine help -- 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

[android-developers] Android Call Recorder

2012-09-12 Thread bala kumaran
How to record incoming and out-going calls in Android Applications. Which API need to be used for this purpose? -- 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

Re: [android-developers] Unknown application a large number of SMS messages are being sent. Select OK to continue, or Cancel to stop sending

2012-09-12 Thread Corby Campbell
That's what I was afraid of haha. I'll probably do the split sending like you said. Thanks for the response! On Tuesday, September 11, 2012 4:58:37 AM UTC-6, Mark Murphy (a Commons Guy) wrote: Replying to the group,, where this belongs. On Mon, Sep 10, 2012 at 11:03 PM, Corby Campbell

Re: [android-developers] Unknown application a large number of SMS messages are being sent. Select OK to continue, or Cancel to stop sending

2012-09-12 Thread Corby Campbell
It's likely none of you read this thread anymore... but I tried googling setting up a server gateway to send bulk SMS, and all I could find is paid services. I'm in charge of sending out notifications of activities to a group of 150 people. I've started using apps on my T-Mobile Nexus S, but

[android-developers] android.intent.action.MEDIA_SCANNER_SCAN_FILE

2012-09-12 Thread djhacktor
M not able to receive any intent followed every scheme thing , any word on this ,like how exactly this works -- 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

[android-developers] Add a view dynamically to listview that is bound by cursor adapter

2012-09-12 Thread Juli
I have a list view that contains contacts of a person. When I click a list item I want to add a view at next to that clicked item's position . The added view is not a fixed one for all list item clicks. Hence I am creating that view dynamically . How can i do it ? -- You received this

[android-developers] Licensing application after release

2012-09-12 Thread Carlos Gómez
So I have an application already in the Market and I would like to add the license check, my question is if the users that have already payed the app (before I had the license check installed) will pass the license check if I release an update adding it. This is not clear in the documentation.

[android-developers] Re: Capturing the PictureWasTaken event

2012-09-12 Thread djhacktor
Hi m trying to read intent android.intent.action.MEDIA_SCANNER_SCAN_FILE but this does nt captured any suggestion thanks in advance On Friday, 16 January 2009 23:18:20 UTC+5:30, GiladH wrote: Hey Dave, issue solved by periodically polling the mediaStore, as you suggested. Tnx,

[android-developers] Determine whether MediaPlayer class uses Hardware Video Decoding

2012-09-12 Thread android_developer
how can i find out whether MediaPlayer class uses Hardware Video Decoding Is there any method to find that ? -- 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

[android-developers] content provider and full text search - best practice?

2012-09-12 Thread dorjeduck
Hi i am in the process of writing my first content provider. The content provided includes a fulltext search in the database underlying the provider. I was wondering how to design my content provider to hide the specifics, should sqlite specific terms like MATCH be given in the * selection*

Re: [android-developers] you-tube video in web view

2012-09-12 Thread Wayne
Hi, how you resolved this problem? On Saturday, June 9, 2012 8:00:30 PM UTC+7, vaibs malviya wrote: any one have a suggestion On Sat, Jun 9, 2012 at 5:53 PM, vaibs malviya vaibs.m...@gmail.comjavascript: wrote: URL is correct i tested it in browser On Sat, Jun 9, 2012 at 5:25 PM,

[android-developers] Re: Where to start for developing an Android Game?

2012-09-12 Thread dorjeduck
I think best you first get some overview over android itself if you dont have it. I only used one game lib so far yet surely it rocks http://libgdx.badlogicgames.com/ its not only targeting android so depending on your needs that might or might not fit you. greets martin On Sunday,

[android-developers] Crashing camera app ICS

2012-09-12 Thread jaiju Yesudasan
Hi My device not having camera. Whenever I open the Camera app Its exiting with Dialog Unfortunately, Camera has stopped . I may no connect camera always since I am using Sec Camera . Android version: ICS I am expecting gracefull exit from the app. Crash log is as Follows.

[android-developers] artist name on mini player

2012-09-12 Thread Jim Smith
I want to control the order of what is displayed in the mini player view on the lock screen. I want to be able to show the artist name first, which is a popular request. Below is the code I use. Is there some way to force the display order? RemoteControlClient.MetadataEditor editor =

[android-developers] Can I prelaunch an app?

2012-09-12 Thread Jilong Liao
Hi everyone, I am wondering if I can write a Service that enable the user to prelaunch a different app while he is using the current app. For example, if I am using gmail, can I prelaunch Angry Bird when I am using gmail? Here prelaunch means launch the app in the backgroup but not put it on

[android-developers] Why can't I view the code of PackageManagerService class on Eclipse? (I put it in the right directory)

2012-09-12 Thread Jin
Hi I want to do some modification to PackageManagerService, but now I cannot even view its source code. I downloaded the Android source code and put it into android-sdk/platforms/android-8/sources, however, I can just view part of it. The source code of directories like com, which

[android-developers] hi

2012-09-12 Thread jesweer
public class loginactivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Log.e(oncreate, inside oncreate); final EditText userid = (EditText)

[android-developers] TableLayout border issue

2012-09-12 Thread Howlin1
I have a table that has a border around each of the table rows. I get a problem with the border part when text in one column goes onto a second line, while the text in the other column doesn't. That causes the row that doesn't have the text wrapped onto a second line to be be shorter and a

[android-developers] Change background using another activity

2012-09-12 Thread Keysuke urahara
I have two activities, A and B. The activity A is the main, and B is the child from A. I want to change the background of A using B. The activity B open a gallery chooser, to get the image i want to set as background. I'm trying to send the image path using intents, but when i use the data

[android-developers] Why Flash Player not working on android and whts the solution

2012-09-12 Thread Kapil Rave
Hi Guys i bought a Phone Sony Xperia Acro S Android OS, v4.0 (Ice Cream Sandwich) then i tried watch some live streaming on it but it was asking for the adobe flash player and i get shocked after reading that adobe flash player is no longer supporting android after 15 August. So is there any

[android-developers] How to authenticate Google Play Developer API with OAuth 2.0?

2012-09-12 Thread Kalinka
*The Story:* I am making an Android app that allows a user to purchase a subscription, and does not require the user to have an account or login. I want to check whether or not a user has purchased a subscription, and the Google Play Android Developer API seems to provide this

[android-developers] Using 2 TextureView or 1 TextureView + 1 GLSurfaceView at the same time

2012-09-12 Thread Benj
Hi, I'm currently developping a sort of AR application. It basically features of a camera preview as a background and of the rendering of 3D objects as an overlay, inside the same fragment. Currently I use a SurfaceView for camera preview and an overlaying GLSurfaceView for the OpenGL

  1   2   >