[android-developers] recording voice level meter

2012-02-09 Thread Raneez
I am developing a voice related app. I want show the power or level of voice being recorded at realtime. Is there any inbuilt component or anything else to do this? I have seen a meter in mediastore.audio.record_sound_action. I want to use such meter in my app. -- You received this message

[android-developers] Rounded image view

2012-02-09 Thread chowdary nani
Hi all, I am working on images here my images are from server i need to display those images in rounded corner i have set background with round border when i set image through code i am displaying the image in rectangle here is code ?xml version=1.0 encoding=utf-8? layer-list

[android-developers] Re: problems using setMeasuredDimension()

2012-02-09 Thread Marco Alexander Schmitz
Well, the solution was quite simple :) @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { container.measure(widthMeasureSpec, heightMeasureSpec); setMeasuredDimension(container.getMeasuredWidth(), container.getMeasuredHeight()); } Right

[android-developers] Re: i want to create simple android appln

2012-02-09 Thread Ali Chousein
i want to create simple android appln. how can i do it? Follow this tutorial: http://developer.android.com/resources/tutorials/hello-world.html (And yes, correct spelling is damn important. I would never hire someone who doesn't care about correct spelling!)

Re: [android-developers] Rounded image view

2012-02-09 Thread Ratheesh Valamchuzhy
you can use the image helper class to make rounded border package com.Skadate; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.RectF; import

[android-developers] Re: Rounded image view

2012-02-09 Thread skink
chowdary nani wrote: Please help me. but with what? what's your goal? do you want your image to have rounded corners or the frame needs to be rounded? pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Rounded image view

2012-02-09 Thread chowdary nani
Hi Ratheesh Valamchuzhy, Thanks for help. Thanks for time. But i have gou some error in the which you have sent to me i.e, paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN)); can i know what is Mode.SRC_IN. Thanks in advance. Thanks Naveen. On Thu, Feb 9, 2012 at 2:06 PM, Ratheesh

Re: [android-developers] Re: Rounded image view

2012-02-09 Thread chowdary nani
Hi skink , I need to display my image or frame with rounded corners Thanks for concern. Thanks for time. Thanks for replay. Thanks Naveen. On Thu, Feb 9, 2012 at 2:15 PM, skink psk...@gmail.com wrote: chowdary nani wrote: Please help me. but with what? what's your goal? do

Re: [android-developers] Re: Hello i am developing an App for android using bluetooth.

2012-02-09 Thread Mohamed Gougam
This is what is shown on the logcat: 02-08 13:17:23.112: D/AndroidRuntime(4389): Shutting down VM 02-08 13:17:23.112: W/dalvikvm(4389): threadid=1: thread exiting with uncaught exception (group=0xb570e298) 02-08 13:17:23.112: E/AndroidRuntime(4389): FATAL EXCEPTION: main 02-08 13:17:23.112:

[android-developers] RECORD AND PLAY BACK OF .3GP FILES

2012-02-09 Thread yogesh...@acusis.com
HELLO EVERYBODY, I AM NEW TO THIS FORUM, I HAVE GOT A PROBLEM IN RECORD AND PLAYBACK OF AUDIO. I AM GETTING ERROR (IO ERROR) IN MEDIAPLAYER.PREPARE statement ...i.e error(1,-4) by googling i came to conclusion that its a permission issue, so i used file desc ... still i am getting same

Re: [android-developers] Re: Hello i am developing an App for android using bluetooth.

2012-02-09 Thread Raghav Sood
Your permissions should be outside the application node of the manifest. Thanks On Thu, Feb 9, 2012 at 2:25 PM, Mohamed Gougam mblack...@gmail.com wrote: This is what is shown on the logcat: 02-08 13:17:23.112: D/AndroidRuntime(4389): Shutting down VM 02-08 13:17:23.112: W/dalvikvm(4389):

Re: [android-developers] Re: Rounded image view

2012-02-09 Thread skink
chowdary nani wrote: Hi skink , I need to display my image or frame with rounded corners decide: image or frame? pskink -- 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] Pitfalls of sharing app data between users

2012-02-09 Thread Dusk Jockeys Android Apps
I have an app where you can save the state into a custom file and share with another user of the same app. This saved state consists of several jpgs and a text file, archived into a single zip file. When the user wants to share, they are prompted with the usual chooser which supports the Send

Re: [android-developers] Re: Rounded image view

2012-02-09 Thread chowdary nani
On Thu, Feb 9, 2012 at 2:23 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi skink , I neen rounded corners for frame please help me Thanks for concern. Thanks for time. Thanks for replay. Thanks Naveen. On Thu, Feb 9, 2012 at 2:15 PM, skink psk...@gmail.com wrote: chowdary

[android-developers] Re: Where can I find installed Apps/Widgets sources?

2012-02-09 Thread TurboMan
Sorry guys, my apologies. What I mean, Android is open source, source code is included. In the emulator, I see lots of applications running. And I believe, these applications already have the source code that bundled with installation I wish to experiment those source codes to learn more about

[android-developers] how to draw a line around text when pressed.......

2012-02-09 Thread aparna rani
hi all... i am implementing video downloading when press the text. its working fine. but i want user interface feeling.. when press text draw line around textplease help me.. thanks in advance.. -- You received this message because you are subscribed

Re: [android-developers] Re: Hello i am developing an App for android using bluetooth.

2012-02-09 Thread Mohamed Gougam
Thanks indeed for the help mate, but why when i press the button Startdetecting to list the detected bluetooth deveices, the message doesnt stay stable, it comes and it goes very fast. On Thu, Feb 9, 2012 at 1:03 PM, Raghav Sood raghavs...@androidactivist.orgwrote: Your permissions should be

[android-developers] Re: Over the top window considering soft input mode

2012-02-09 Thread Doudou Rainbow
Thank you for your answer. I am aware of the fact that what we are doing is not in the scope of common applications. I am okay to consider another flag than TYPE_SYSTEM_ALERT for my window to let it display behind the keyboard (and so consider resizing) I think I tested almost all of them but as

[android-developers] Problem with UTF-16 Android String to xml UTF-8 string conversion

2012-02-09 Thread redVirus
Hello, I am working with some native code which parses an xml file to give me a String in my Android which is a UTF-16 string. Now its output is as expected with no extra unwanted charachters when I print it in logs. But when I try to display the same string in my UI which has a TextView then it

[android-developers] Android native implementation for force stop in setting--manage applications

2012-02-09 Thread ashiq sayyad
Hi All, I want to achieve force stop functionality in my app on close button click. Can anybody tell me how android handles force stop in settings-- manage applications screen. I tried using System.exit(0) Process.killProcess(Process.myPid()); But it kills the current activity app launches

[android-developers] How to stop service getting latest updates from twitter ??

2012-02-09 Thread AndroidGirl8
Hi all, i'm trying to make service getting twitter update by a thread every 5secs start service just fine and getting new twittes and inserting to database but i cant close service and it continue working untill force close here is my code : public class UpdaterServices extends Service {

[android-developers] best way for automation?

2012-02-09 Thread Hitendrasinh Gohil
Hi, I need to do kind of automation testing in android app.There are many rest request/response operations and polling in app.I have searched and found the following results: Robotium Junit Monkeyrunner I need to do load testing on server from client(android) side and UI testing also. can

Re: [android-developers] Re: Hello i am developing an App for android using bluetooth.

2012-02-09 Thread Mohamed Gougam
Problem solved temporary (Big project new issues appeared), thanks a lot mate for the help. On Thu, Feb 9, 2012 at 1:48 PM, Mohamed Gougam mblack...@gmail.com wrote: Thanks indeed for the help mate, but why when i press the button Startdetecting to list the detected bluetooth deveices, the

[android-developers] Re: Problem with writing files to internal memory (not visible on file browser on ICS)

2012-02-09 Thread Dirk Vranckaert
Ok thanks, I understand now ;) And it works... :) However I was applying this for the files I created, but that doesn't seem to be enough. When you create the directory you should also apply this. But thanks for helping me out here! :) On Feb 8, 5:03 pm, Nikolay Elenkov

Re: [android-developers] listview search improve performance

2012-02-09 Thread vani reddy
Hi Daniel, I did the same as what you said, sometimes it throws indexoutofboundsexception in adapter. It takes the old value and sets the adapter pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] listview search improve performance

2012-02-09 Thread Daniel Drozdzewski
What exactly did you do, from what I said? All of it? Some points? I suggest you follow Skink's suggestion and most of your pains will be sorted. On 9 February 2012 11:23, vani reddy vani.reddy.bl...@gmail.com wrote: Hi Daniel, I did the same as what you said,  sometimes it throws

Re: [android-developers] listview search improve performance

2012-02-09 Thread vani reddy
What i did is the below.Among the points which you mentioned i used timer concept and Optimising search using. *start*, *before*, and *count* . public void onTextChanged(CharSequence s, int start, int before, int count) { System.out.println(S + s);

[android-developers] Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Soyer
i am developing a bluetooth app, and i think it's passing through the different parts of the code as expected but the issue now is that i don't know why it is not listing any detected devices. Any Ideas? -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] listview search improve performance

2012-02-09 Thread vani reddy
I am not able to avoid creating a new adapter after every search. On Thu, Feb 9, 2012 at 5:12 PM, vani reddy vani.reddy.bl...@gmail.comwrote: What i did is the below.Among the points which you mentioned i used timer concept and Optimising search using. *start*, *before*, and *count* .

[android-developers] Re: Re : Grid View

2012-02-09 Thread vivek elangovan
Hi, i tried defining a layout with image and text and when i m using getLayoutInflater() function in my ImageAdapter and when i run the application it crashes.If you members have any sample pls let me know. -Vivek On Feb 8, 12:21 pm, Farhan Tariq farhan@gmail.com wrote: define a

[android-developers] Re: Re : Grid View

2012-02-09 Thread Seshu
Hi Vivek, See this example, i ll helps u... http://android-er.blogspot.in/2011/03/custom-gridview.html Thanks and Regards, S.Seshu. On Feb 9, 4:51 pm, vivek elangovan elangovan.vi...@gmail.com wrote: Hi,         i tried defining a layout with image and text and when i m using

[android-developers] multicasting in android

2012-02-09 Thread sangram
Hi, We have enabled multicast streaming in one of our machines using VLC server. We use the following URL for streaming the multicast data. rtp://239.1.2.11:5004 udp://239.1.2.11:1234 But when we pass these links to the VideoView or mediaplayer in android, we get the message as Sorry, the video

[android-developers] Re: listview search improve performance

2012-02-09 Thread skink
On 9 Lut, 12:43, vani reddy vani.reddy.bl...@gmail.com wrote: I am not able to avoid creating a new adapter after every search. see AbsListView.html#attr_android:textFilterEnabled AbsListView already supports all you need to perform row filtering: it creates temp TextView that displays

Re: [android-developers] Re: Where can I find installed Apps/Widgets sources?

2012-02-09 Thread Mark Murphy
http://source.android.com On Thu, Feb 9, 2012 at 4:14 AM, TurboMan yusufce...@gmail.com wrote: Sorry guys, my apologies. What I mean, Android is open source, source  code is included. In the emulator, I see lots of applications running. And I believe, these applications already have the

Re: [android-developers] MapView works on some devices and others it doesnt

2012-02-09 Thread Mark Murphy
The reasons why a MapView might not load tiles: -- you do not have the INTERNET permission -- you do not have an Internet connection -- you have not used the correct Maps API key to go with the signing key you used to sign the APK On Thu, Feb 9, 2012 at 2:55 AM, Jim Andresakis

Re: [android-developers] How to hide three-dot indicator(Option menu indicator) on ICS handsets?

2012-02-09 Thread Mark Murphy
On Thu, Feb 9, 2012 at 1:46 AM, Subba raochoud...@gmail.com wrote: How to disable/hide three-dot indicator(Option menu indicator) on ICS handsets? I am running application as uses-sdk android:minSdkVersion=5/ in Manifest, code is compiled with 4.0. Three-dot indicator shows on every screen.

Re: [android-developers] Re: On ICS, Stopped service can't receive an intent.

2012-02-09 Thread Mark Murphy
Your app will not run until the user launches one of your activities. On Thu, Feb 9, 2012 at 1:32 AM, raja yunjung.ch...@gmail.com wrote: I also counter similar issue lately. I'm writing a service. I claim a receiver in the AndroidManifest to receive boot complete event. When receiving the

Re: [android-developers] Pitfalls of sharing app data between users

2012-02-09 Thread Mark Murphy
On Thu, Feb 9, 2012 at 4:05 AM, Dusk Jockeys Android Apps duskjock...@gmail.com wrote: The obvious candidate is to use the application/zip MIME type. The problem is that while this works fine on the default android mail app it is not supported by Gmail or the default Samsung email app, any zip

[android-developers] Re: How to stop service getting latest updates from twitter ??

2012-02-09 Thread Chris Mawata
Take a look at http://developer.android.com/reference/android/app/Service.html It depends on how you are starting the service. On Feb 9, 5:25 am, AndroidGirl8 walaamahmou...@gmail.com wrote: Hi all, i'm  trying to  make service getting twitter update by a thread every 5secs start service just

[android-developers] Problem in opening downloaded file

2012-02-09 Thread Jovish P
In my app we are downloading few files and using following method to open that file. Whenever the filename contains space, the following method is not working . If it doesn't contains any space it is working perfectly. private void openDownladedReport(String filePath){ File file = new

[android-developers] Re: Pitfalls of sharing app data between users

2012-02-09 Thread Dusk Jockeys Android Apps
Hi Mark Sorry if I wasn't clear. I am indeed registering for the action.VIEW and category.BROWSABLE intents for the application/zip type. And in that situation, zip files open into my app perfectly from file managers, perfectly under the stock Android email app, perfectly on HTC's email app.

[android-developers] locknow() is not working on Android 4.0.4

2012-02-09 Thread Katecca
The locknow() function introduced since Android 2.2 is fine until 4.0.4. Now, the screen of the phone (i.e. Galaxy Nexus CDMA) will just off and on which I believe it is a bug. Does Google aware this issue or is there any solution to get rid of it? -- You received this message because you are

Re: [android-developers] Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread TreKing
On Thu, Feb 9, 2012 at 5:42 AM, Soyer mblack...@gmail.com wrote: the issue now is that i don't know why it is not listing any detected devices. Any Ideas? Elaborate on your problem. There is almost no information here for anyone to help you.

Re: [android-developers] Android native implementation for force stop in setting--manage applications

2012-02-09 Thread TreKing
On Thu, Feb 9, 2012 at 4:17 AM, ashiq sayyad ashiqsay...@gmail.com wrote: I want to achieve force stop functionality in my app on close button click. Why? - TreKing

[android-developers] Re: Licensing issue on Multiple-apk feature.

2012-02-09 Thread androidmediadeveloper
This is interesting. We are also going along the same route and knowing this would help. Dont know if inapp biling suffers frim the same. What is the response code that comes back on checkaccess ? On Feb 8, 11:55 pm, droid-stricken harik...@gmail.com wrote: Hi, I have two APKs for an

[android-developers] How to avoid window background to be redrawn ?

2012-02-09 Thread Isambert
Hi ! I have implemented a custom view which behaves like a Spingboard (I have pages of icons scrolling). It works really good in smartphones. But now I am developping a tablet version and I have noticed a severe performance drop when scrolling. After investigation, it turns out that drawBitmap

[android-developers] How to connect an app with a site?

2012-02-09 Thread juliagrig
Hi all, this I would like to achieve, is to connect my site with my andoid app. I would like to transfer informations between them. What I sould read about? There is one way to do this, or more? Could you share with me where could I find samples, or tutorials or something that will help me?

[android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Soyer
Sure, first bluetooth detection on Android emulator is not supported on Wind7 so i used VirtualBox to run it on Linux2.4, so the bluetooth features are supported by the Host OS and the emulator, but the thing is that the app is not detecting any devices (My phone...) This is my code: package

[android-developers] Re: Unable to execute Bluetooth HDP Demo

2012-02-09 Thread Ming
Exactly same problem with you. I am using UA-767-PBT-C After connected to the device, I can see the Connection State is Connected and Reading data... and a green icon. However, I can never see data. In log ,I keep receiving dalvikm - GC_CONCURRENT freed 494K ..., and sometime even reboot! Do u

[android-developers] Re: Unable to execute Bluetooth HDP Demo

2012-02-09 Thread jfernandez
Hi Chenchen and Ming, Sorry for the delay. I think you are right Chenchen, I obtain the same behaviour, so, I guess the problem is in the Android source code... Well, we will wait for a new Android release solving this issue. Regards. On 9 feb, 15:58, Ming ming030...@gmail.com wrote: Exactly

[android-developers] Custom label and text box in ListView?

2012-02-09 Thread Mark Winchester
I'm trying to find a bit of sample code that I'm having trouble with. Hoping someone here could help me. I've got a Listview in my app that I want each row of to have a label and a text box (TextView and EditText). I've got to create these and add them dynamically. That much hasn't been too

Re: [android-developers] Re: How to stop service getting latest updates from twitter ??

2012-02-09 Thread Walaa Mahmoud
i saw this link before i asked but no result ,i start service via intent here is the code : public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.prefs: startActivity(new Intent(MarkanaActivity.this, Prefs.class)); break; case R.id.startservices:

Re: [android-developers] Re: How to stop service getting latest updates from twitter ??

2012-02-09 Thread Walaa Mahmoud
Thanks for replaying i saw this link before i asked but no result ,i start service via intent here is the code : public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.prefs: startActivity(new Intent(MarkanaActivity.this, Prefs.class)); break; case

[android-developers] Re: Voice recognition through bluetooth

2012-02-09 Thread Eddie
Does anybody have any thoughts on this? On Dec 30 2011, 7:42 am, Eddie ed.ka...@gmail.com wrote: Hi, I have speech recognition working in my activity. However, I realized that if I have a bluetooth headset connected to my phone, the recognition still only occurs through the phone mic and

Re: [android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Kristopher Micinski
Did you try running this in a debugger to see what's going on? kris On Thu, Feb 9, 2012 at 9:58 AM, Soyer mblack...@gmail.com wrote: Sure, first bluetooth detection on Android emulator is not supported on Wind7 so i used VirtualBox to run it on Linux2.4, so the bluetooth features are

Re: [android-developers] How to connect an app with a site?

2012-02-09 Thread Kristopher Micinski
On Thu, Feb 9, 2012 at 9:57 AM, juliagrig iouliag...@gmail.com wrote: Hi all, this I would like to achieve, is to connect my site with my andoid app. I would like to transfer informations between them. What I sould read about? There is one way to do this, or more? Could you share with me

[android-developers] How to create a Disk space usage monitor .

2012-02-09 Thread anoop ajay
hello everyone am trying to build an application that shows the exact disk space usage of memory for my mini project, needs help as I am a beginner in this. Thank you all in advance.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Soyer
Hello Kris, i tried it on a mobile phone (HTC Hero) and no detected devices were displayed...it's showing the default bluetooth adapter, and then Start discovering, Done with discovery and at last: Devices paired: and nothing displayed, though my other mobile phone is next to it. On Feb

Re: [android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Kristopher Micinski
Oh, you're not using the BluetoothAdapter correctly... You basically call startdiscovery and then display stuff. That's not how it works. It's an asynchronous call. You start discovery with .startDiscovery() and then you have to wait until it's finished. To handle that, you wait for a

[android-developers] Re: Licensing issue on Multiple-apk feature.

2012-02-09 Thread droid-stricken
I don't know what the response code is since that's not being put out to console. The following is what i see from the LicenseChecker class - 02-09 10:11:50.556: I/LicenseChecker(2224): Binding to licensing service. 02-09 10:11:50.596: I/LicenseChecker(2224): Calling checkLicense on service for

[android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Soyer
so it's an order issue, Could you please instruct me which part should i change?, because honestly i have read loads of articles and i don't think i am going anywhere which getting more n more frustrating... That would be Very Appreciated. On Feb 9, 8:21 pm, Kristopher Micinski

[android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread albnok
Man I most certainly don't click Rate, no matter what, I just want to get in the game or whatever app. I guess they have to feel compelled to want to rate it? On Feb 8, 11:44 pm, decastro reis...@gmail.com wrote: I have recently released a game called tangle twister to the market. I have spent

[android-developers] Re: Unable to execute Bluetooth HDP Demo

2012-02-09 Thread Raul Ruiz
Hi all, I will test the new version of Android 4.0.4 on Monday. I will comment if the problem is fixed or not. Regards. On 9 feb, 16:04, jfernandez jorge.fernandez.gonza...@gmail.com wrote: Hi Chenchen and Ming, Sorry for the delay. I think you are right Chenchen, I obtain the same

Re: [android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Kristopher Micinski
On Thu, Feb 9, 2012 at 11:44 AM, Soyer mblack...@gmail.com wrote: so it's an order issue, Could you please instruct me which part should i change?, because honestly i have read loads of articles and i don't think i am going anywhere which getting more n more frustrating... That would be Very

[android-developers] Re: Hello everyone, i am developing a bluetooth app.

2012-02-09 Thread Soyer
alright Thanks for the guidance mate. I will update u, thanks again. cheers :) On Feb 9, 8:54 pm, Kristopher Micinski krismicin...@gmail.com wrote: On Thu, Feb 9, 2012 at 11:44 AM, Soyer mblack...@gmail.com wrote: so it's an order issue, Could you please instruct me which part should i

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread Mark Phillips
Could you release an update and offer something for the rating? Additional levels, characters, some way to personalize the game for the user? Mark On Feb 9, 2012 9:46 AM, albnok alb...@gmail.com wrote: Man I most certainly don't click Rate, no matter what, I just want to get in the game or

Re: [android-developers] Re: Pitfalls of sharing app data between users

2012-02-09 Thread Mark Murphy
As I wrote, don't use email attachments. Upload/download files from a server, potentially emailing URLs. Not everyone uses email. On Thu, Feb 9, 2012 at 9:22 AM, Dusk Jockeys Android Apps duskjock...@gmail.com wrote: Hi Mark Sorry if I wasn't clear. I am indeed registering for the

Re: [android-developers] Android native implementation for force stop in setting--manage applications

2012-02-09 Thread Mark Murphy
On Thu, Feb 9, 2012 at 5:17 AM, ashiq sayyad ashiqsay...@gmail.com wrote: I want to achieve force stop functionality in my app on close button click. Can anybody tell me how android handles force stop in settings-- manage applications screen. I tried using System.exit(0)

[android-developers] Is there a way to access/edit the camera preview image?

2012-02-09 Thread Jim Graham
I suspect that the answer to this is no ... but I thought I'd ask, just in case I'm wrong about that. In my camera app, I want to give the user a preview that includes the filters that I'll be providing as part of my app. I know how to build composite images, thanks to the book I'm working from,

[android-developers] ActionBar Tabs with multiple fragments

2012-02-09 Thread Jason Prenger
Hi everyone, I've been trying to update my app and get going with fragments, the action bar, and all the other UI features that I'm missing out on. I understand I can have multiple fragments in an activity, have different layouts based upon the device and all that good stuff but I'm struggling

[android-developers] DLL equivalent in android

2012-02-09 Thread New Developer
In Windows programming we have DLL so that we can build modules If the DLL exists then additional functions and features exist What is the way to do this under android ? Thanks Barry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] DLL equivalent in android

2012-02-09 Thread Kristopher Micinski
On Thu, Feb 9, 2012 at 12:42 PM, New Developer secur...@isscp.com wrote: In Windows programming we have DLL so that we can build modules If the DLL exists then additional functions and features exist What is the way to do this under android ? Thanks Barry Libraries for your own apps?

Re: [android-developers] ActionBar Tabs with multiple fragments

2012-02-09 Thread Mark Murphy
On Thu, Feb 9, 2012 at 12:36 PM, Jason Prenger jasonmpren...@gmail.com wrote: but how do I have more than one fragment in a tab? The same way you have more than one fragment anywhere else: put more than one in a container (e.g., two FrameLayouts in a LinearLayout). I can convert the second

Re: [android-developers] Android native implementation for force stop in setting--manage applications

2012-02-09 Thread ashiq sayyad
Actually activity.finish() will finish the current activity app will show the previously stacked activity.But i want to finish all activities also stop all background processes.So I need to have similar kind of implementation as Force stop in manage applications On 9 February 2012 20:00,

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread a1
Could you release an update and offer something for the rating? Additional levels, characters, some way to personalize the game for the user? Which is, of course, violation of market content policy terms ( http://www.android.com/us/developer-content-policy.html see Spam and Placement

Re: [android-developers] Android native implementation for force stop in setting--manage applications

2012-02-09 Thread Kristopher Micinski
On Thu, Feb 9, 2012 at 1:01 PM, ashiq sayyad ashiqsay...@gmail.com wrote: Actually activity.finish() will finish the current activity app will show the previously stacked activity.But i want to finish all activities also stop all background processes.So I need to have similar kind of

[android-developers] Re: Database management

2012-02-09 Thread A. Elk
You can't access files that don't belong to your application unless the file's creator makes them world-readable. This is a security feature. The same is true for databases. I think there are content providers for MMS and SMS. Look in the Android Open Source repository. They're not documented,

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread Mark Phillips
My apologies for recommending something against the market policies. I was not aware of that policy. I am just starting out, so I have not gotten that far in the process to actually put an app on the market. BTW, I was not advocating making an offer for a better rating. I meant an incentive for

[android-developers] App in production: java.lang.RuntimeException: Unable to instantiate activity

2012-02-09 Thread Leo
Hi all, I have an app published to the market. This game is distributed normally and I have more than 100.000 active installs. But sometimes (one or twice a week) there is a crash report with the following exception: java.lang.RuntimeException: Unable to instantiate activity

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread Nikolay Elenkov
On Fri, Feb 10, 2012 at 3:18 AM, Mark Phillips m...@phillipsmarketing.biz wrote: My apologies for recommending something against the market policies. I was not aware of that policy. I am just starting out, so I have not gotten that far in the process to actually put an app  on the market.

[android-developers] Re: Problem Creating new Contact with photo

2012-02-09 Thread A. Elk
1. As far as I can tell, you're trying to create a new raw contact with an account name and account type set to null. This is a bad idea, even though it will work. The Contacts Provider depends on raw contacts having a particular account type and account name; these indicate

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread Jim Graham
On Fri, Feb 10, 2012 at 03:24:51AM +0900, Nikolay Elenkov wrote: so called 'malware' (mostly filled with ads, etc.) that require you to give them a 5-star rating to continue playing/watching, etc. Most people apparently fall for it, and those apps get a high ranking. I seem to recall seeing

[android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread John Coryat
Ratings are an odd thing on the Android market. My app has over 3,000,000 downloads but only has about 20,000 ratings. That works out to 0.7% of users rate the app. I think this is pretty typical. Unless you have a really excellent or really terrible app, people won't rate it. For 650

Re: [android-developers] Custom label and text box in ListView?

2012-02-09 Thread poncho
According to the following thread ListView isn't really meant to handle that type of UI with editable entries. http://groups.google.com/group/android-developers/browse_thread/thread/50f0fc185da8fe4d?pli=1 The suggested solution is to use vertical LinearLayout wrapped in a ScrollView,

[android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread FiltrSoft
Yea, unless your app does something completely out of the ordinary, you will get very few ratings. The rating system is a little wonky, where people have to go back to the market to rate it, and it's probably that extra step that people don't want to bother with. The best thing you can do is

[android-developers] Re: Is there a way to access/edit the camera preview image?

2012-02-09 Thread Jim Graham
On Thu, Feb 09, 2012 at 11:29:59AM -0600, Jim Graham wrote: I suspect that the answer to this is no ... but I thought I'd ask, just in case I'm wrong about that. Good thing I askedthe answer is yes, not no. In my camera app, I want to give the user a preview that includes the filters

Re: [android-developers] Re: Almost nobody is rating my app.

2012-02-09 Thread Ted Scott
As long as you are not tying the enhancement to a rating level, I don't think that would violate the policy. Now telling whether or not someone actually rated the app is a different issue. On 2/9/2012 1:18 PM, Mark Phillips wrote: My apologies for recommending something against the market

[android-developers] Re: DLL equivalent in android

2012-02-09 Thread JackN
deep in the system, you also have shared objects, which can be like dlls. for java though, it is the jars On Feb 9, 9:49 am, Kristopher Micinski krismicin...@gmail.com wrote: On Thu, Feb 9, 2012 at 12:42 PM, New Developer secur...@isscp.com wrote:  In Windows programming we have DLL so that

[android-developers] Re: How to connect an app with a site?

2012-02-09 Thread JackN
just think of it as http messaging. On Feb 9, 7:42 am, Kristopher Micinski krismicin...@gmail.com wrote: On Thu, Feb 9, 2012 at 9:57 AM, juliagrig iouliag...@gmail.com wrote: Hi all, this I would like to achieve, is to connect my site with my andoid app. I would like to transfer

Re: [android-developers] Re: DLL equivalent in android

2012-02-09 Thread Kristopher Micinski
On Thu, Feb 9, 2012 at 2:54 PM, JackN j...@jacknorth.com wrote: deep in the system, you also have shared objects, which can be like dlls. for java though, it is the jars Right, but by that argument you could also have a shared object for the ndk that you'd migrate to the android platform.

[android-developers] Re: How to destroy a background activity without removing it from back stack.

2012-02-09 Thread JackN
Not sure what you problem is, but maybe instead of multiple activities, stack views on one activity On Feb 6, 11:50 pm, Haisoo Shin das...@gmail.com wrote: Hi, I have a problem on some devices like Galaxy Nexus, where my background activities are not destroyed by the system even when

[android-developers] Re: How to hide three-dot indicator(Option menu indicator) on ICS handsets?

2012-02-09 Thread Subba
Thanks Mark for the reply. Adding android:targetSdkVersion=14 in manifest it works. However don't want hide/remove three dots button on all screens . Only in preference activities don't want to show this three dots button. On Feb 9, 4:10 am, Mark Murphy mmur...@commonsware.com wrote: On Thu,

[android-developers] Re: ActionBar Tabs with multiple fragments

2012-02-09 Thread Jason Prenger
Hey Mark, Thanks for the advice, its gotten me closer to the solution that I was looking for. I guess I was hoping or figured there would be an interface to give a layout file to an ActionBar tab as opposed to attaching and detaching the needed fragments in the listener. Jason Prenger On Feb

[android-developers] Re: Is there a way to access/edit the camera preview image?

2012-02-09 Thread Jim Graham
On Thu, Feb 09, 2012 at 01:25:08PM -0600, Jim Graham wrote: On Thu, Feb 09, 2012 at 11:29:59AM -0600, Jim Graham wrote: I suspect that the answer to this is no ... but I thought I'd ask, just in case I'm wrong about that. Good thing I askedthe answer is yes, not no. Or maybe it is no.

[android-developers] wait and notify in non-UI thread: waiting thread not waking up

2012-02-09 Thread John Goche
Dear Android developers, I am having the following issue in Android: In one class I am having: final Object lock = new Object(); Thread thread; @Override public void onCreate(Bundle savedInstanceState) {

[android-developers] Re: MapView works on some devices and others it doesnt

2012-02-09 Thread lbendlin
- are you using the mytouch3g as the main development device? do you copy the apk over and then install? or do you install via Eclipse? - are you always using the same development computer? (the debug key is machine specific) -- You received this message because you are subscribed to the

[android-developers] Re: ActionBar Tabs with multiple fragments

2012-02-09 Thread Jason Prenger
Figured I might as well talk about the solution I came up with in-case someone comes to this thread with the same ideas I was Eventually went with a workaround of having a base layout with 3 frame layouts... LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android

[android-developers] Re: Is there a way to access/edit the camera preview image?

2012-02-09 Thread Jim Graham
This is the effect I'm trying to get in the camera preview: http://www.jstrack.org/appimage.html Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)MiSTie #49997 Running FreeBSD 7.0 spooky1...@gmail.com ICBM/Hurricane: 30.44406N 86.59909W Do not look into

[android-developers] How to separate 2 WebView's?

2012-02-09 Thread Daniel Rindt
Hello, i have 2 Activities where each contains a WebView. In the first activity i do a loadUrl() to login the user in the view. The website is using cookies. When i leave the activity and come later back to it, the cookie is still in the CookieManager and valid, so everything is working fine.

[android-developers] Re: MapView works on some devices and others it doesnt

2012-02-09 Thread Daniel Rindt
And a reason could be when the google api's not on the device are present. -- 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

  1   2   >