active questions tagged android-sdk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:10:46Z http://stackoverflow.com/feeds/tag/android-sdk http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1873103/how-to-call-a-view-from-the-view 0 How to call a view from the view ? AndroiDBeginner 2009-12-09T10:54:53Z 2009-12-09T12:08:12Z <p>Hi guys. I am a new developer for Android. I wanna know about View transitions.</p> <p>For my application, it has 5 screens that can shift each other. </p> <p>In order word, Screen1 -> Screen2 &lt;--> Screen3 &lt;--> Screen4 -> Screen5. </p> <p>How to make this screen transition on Android ?</p> <p>Please share the knowledge. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1871515/progress-bar-in-notification-bar-when-uploading-image 0 Progress bar in notification bar when uploading image? Mark 2009-12-09T04:03:35Z 2009-12-09T09:05:25Z <p>Hi,</p> <p>I'd like my app to upload an image to a web server. That part works.</p> <p>I'm wondering if it's possible to somehow show the progress of the upload by entering an entry in the "notification bar". I see the Facebook app does this.</p> <p>When you take a picture and choose to upload, the app lets you continue on, and somehow puts the picture upload notifications in a progress bar in the notification bar. I think that's pretty slick. I guess they spawn a new service or something to handle the upload and update that progress bar in the notification bar every so often.</p> <p>Thanks for any ideas</p> http://stackoverflow.com/questions/1725947/highlight-layout-after-delay 0 Highlight layout after delay? Mark 2009-11-12T22:46:35Z 2009-12-08T22:18:42Z <p>Hi,</p> <p>I've created my own compound widget, something just like this:</p> <pre><code>&lt;LinearLayout&gt; &lt;TextView /&gt; &lt;Button /&gt; &lt;/LinearLayout&gt; </code></pre> <p>I'm putting 15 of these in a ScrollView. I want it to behave similar to a ListView (I cannot use a ListView directly for this task).</p> <p>I need the each widget to highlight when pressed. I've gotten this to work, but it's too sensitive - as soon as my finger hits the layout, it highlights - I'd like there to be a delay before highlight to discern between a real tap, and just a scroll gesture.</p> <p>For example, in ListView, when you drag your finger to scroll, the row items don't get highlighted unless you leave your finger on the row for a second.</p> <p>This is how I've set the background of each of my compound items:</p> <pre><code>private void setBg() { ColorDrawable blr = new ColorDrawable(0xFFFFFFFF); Drawable pressed = getContext().getResources().getDrawable(android.R.drawable.list_selector_background); StateListDrawable bg = new StateListDrawable(); bg.addState(View.PRESSED_ENABLED_STATE_SET, pressed); bg.addState(View.FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET, pressed); bg.addState(View.PRESSED_ENABLED_FOCUSED_STATE_SET, pressed); bg.addState(View.ENABLED_WINDOW_FOCUSED_STATE_SET, pressed); bg.addState(View.ENABLED_STATE_SET, blr); bg.addState(View.SELECTED_WINDOW_FOCUSED_STATE_SET, blr); setBackgroundDrawable(bg); } </code></pre> <p>so I'm not sure if I just have set one of the above background drawable states incorrectly - or does ListView do some sort of touch handling internally for that tap delay?</p> <p>Thanks</p> http://stackoverflow.com/questions/1863313/accessing-videos-and-photos-on-android-1-5 0 Accessing Videos AND Photos on Android 1.5 + FunnyLookinHat 2009-12-07T22:18:05Z 2009-12-07T22:18:05Z <p>So I'm trying to allow the user to pick a particular piece of media with my Android Application using the method described here: <a href="http://stackoverflow.com/questions/550905/access-pictures-from-pictures-app-in-my-android-app">http://stackoverflow.com/questions/550905/access-pictures-from-pictures-app-in-my-android-app</a></p> <p>It works great, except for the fact that I can seemingly only choose between either Video or Photo to present the user with, not both at the same time. Is there a good way to do this with:</p> <blockquote> <p>startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_IMAGE);</p> </blockquote> <p>Thanks!</p> http://stackoverflow.com/questions/1860026/how-to-set-geographical-coordinates-on-pictures-for-google-android 0 How to set geographical coordinates on pictures for Google Android ? Clem 2009-12-07T13:36:52Z 2009-12-07T21:45:19Z <p>Hi,</p> <p>I'm currently developping an application to manage my pictures on an Android phone. I developped an algorithm to classify the pictures based on the geographical coordinates (latitude, longitude) of each photo.</p> <p>To test my application on the android emulator in Eclipse, I manually imported a bunch of photos from my computer to the SDCard folder of the emulator.</p> <blockquote> <blockquote> <p>Now I would like to add manually lattitude and longitude data to each photo, so that I can test my algorithm. I've been searching a lot but could't find any way to go through it..</p> </blockquote> </blockquote> <p>Can anybody help me on this ?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1695849/android-layout-autocompletetextview-nullpointerexception-workaround 0 Android Layout AutoCompleteTextView NullPointerException Workaround Jeremy Edwards 2009-11-08T09:26:58Z 2009-12-07T18:36:44Z <p>I'm working in with the Android SDK 2.0 / Galileo / ADT 0.9.4 (latest to date). Against Android 1.5 API layer.</p> <p>If I go to the layout editor and add an AutoCompleteTextView the screen immediately gives me a NullPointerException.</p> <p>Does anyone have a documented workaround for this problem?</p> <p>I can't seem to find one. This is obviously a bug in the Android SDK. (It's been filed anyway.)</p> http://stackoverflow.com/questions/1856270/get-address-in-contacts-using-android-sdk 0 Get address in contacts using Android SDK Jeremy Edwards 2009-12-06T19:11:13Z 2009-12-07T18:17:03Z <p>I'm trying to retrieve the contact's name, phone number, and address from the android contact list. The name and phone are pretty straight forward but the address seems to not be accessible with the 1.6 api level.</p> <p>Has someone figured out how to get a contact's address? Also there's a completely new api in 2.0. How can I take advantage of this and fallback to the old api by using 1 binary. If that's even possible.</p> http://stackoverflow.com/questions/1446710/android-ant-script-workaround 0 Android ant script workaround? haseman 2009-09-18T20:34:23Z 2009-12-07T14:00:03Z <p>It appears that, in the transition between the Android 1.1 sdk and 1.5, Google radically changed how ant scripts using AAPT can build Android projects. Previously they support args allowing developers to specify source, res, asset, and a manifest for a particular build.<br /> Now, they seem to allow developers to specify only a single folder containing everything. While I could rewrite all our build scripts to work in this new way, I rather like our current system (as it doesn't require more hours of work that I don't have). To that end, has anyone figured out how to go back to the pre 1.5 method of ant script building? Further, has anyone found a rational reason for this change?</p> http://stackoverflow.com/questions/1857795/wrapping-a-linearlayout-from-xml 0 Wrapping a LinearLayout from xml Mark 2009-12-07T04:23:51Z 2009-12-07T06:09:30Z <p>Hi,</p> <p>I'm trying to make some Android view classes (which are just wrappers around layouts defined in an XML file). Is this correct:</p> <pre><code>public class MyViewWrapper extends LinearLayout { private TextView mTextView; public MyViewWrapper(Context context) { super(context); } public constructUI() { LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); inflater.inflate(R.layout.myview, this); mTextView = (TextView)findViewById(R.id.myview_textview); } } </code></pre> <p>so the idea is just that I can construct my views like that, and they have logic inside for modifying their child views etc. The layout looks like:</p> <pre><code>&lt;LinearLayout&gt; &lt;TextView /&gt; &lt;/LinearLayout&gt; </code></pre> <p>It just looks like I'm going to get an extra unnecessary LinearLayout. The wrapper class is itself a LinearLayout, and then it will attach the inner LinearLayout from the xml file.</p> <p>Is that ok?</p> <p>Thanks</p> http://stackoverflow.com/questions/1853422/trying-to-set-up-android-sdk-please-help-beginner 1 Trying to set up Android SDK - Please help! Beginner Justin 2009-12-05T20:53:31Z 2009-12-06T15:33:58Z <p>So I am super new to this, and am not really sure what I am doing.</p> <p>I downloaded the Android SDK for Windows, but I am a little confused in setting it up/installing. So I read that I needed to set the System Variables Path to the tools/</p> <p>but I it seems that I would be replacing the Windows\System32?!?!</p> <p>I should not be replacing this should I?</p> <p>Windows Vista; already have the Eclipse IDE download and set up (minus pointing at the SDK)</p> <p>Can anyone help a begginer out with setting this thing up please?</p> <p>apreciated; thanks!</p> <p>also: i should metion exactly what I have done...</p> <p>I downloaded that Android SDK and unzipped it.....that's about it!</p> http://stackoverflow.com/questions/1840091/getting-screen-height-before-first-display 0 Getting screen height before first display? Mark 2009-12-03T14:12:52Z 2009-12-05T14:23:46Z <p>Hi,</p> <p>I have a ListView. I populate it with 8 items, that's all that fits vertically on the G1. Some of my users are saying the Droid has a taller screen height, and so I can probably add one or two more items to the ListView to take up the additional space provided.</p> <p>How could I measure the available height the screen offers at startup, before the UI is displayed? If I see the height can fit more than 8 items, I'd like to add one or two more rows,</p> <p>Thanks</p> http://stackoverflow.com/questions/1845460/activity-history-stack-wrong-upon-first-install-on-device 1 Activity history stack wrong upon first install on device? mark 2009-12-04T07:46:31Z 2009-12-04T17:21:08Z <p>Hi,</p> <p><strong>Edit / Update:</strong></p> <p>As an update to the below problem, I found the exact action which causes it to happen.</p> <ol> <li>Download an apk from a url through the android browser</li> <li>Install the app.</li> <li>After install, the app gives you two choices: "Open" or "Done".</li> <li>If you choose "Open", the quirky behavior described below starts.</li> <li>If you choose "Done", then launch the app from the app tray, it works fine.</li> </ol> <p>So it seems like this problem is caused by using the "Open" button the browser provides you after installing the APK.</p> <p><hr></p> <p>I'm experiencing an error in the history stack of applications upon first install. I made a test app to demonstrate this.</p> <p>The test app is simply two activities, A and B. Activity A launches B. That's all it does. Rest is wizard generated template code from eclipse.</p> <p>When the user installs the app (via web url apk), and runs it for the <em>first</em> time, I get an out-of-order activity stack:</p> <p>-User starts the app, A is on top.<br> -They make A launch B by clicking a button. B is on top of the stack.<br> -User hits the home screen button.<br> -User returns to the app, A is displayed, instead of B.<br> -User hits the back key, B is shown!<br> -User hits the back key again, A is shown!<br> -User hits the back key again, home screen shown.<br> -Now the stack is clean, and app behaves "normally" from now on! </p> <p>Is any one else seeing this? This is almost exactly like this known bug, however my users are not installing from eclipse: <a href="http://code.google.com/p/android/issues/detail?id=2373&amp;q=first%20%20i" rel="nofollow">http://code.google.com/p/android/issues/detail?id=2373&amp;q=first%20%20i</a>...</p> <p>I can provide the test app/source if anyone wants to try. This is the manifest, which does not have any special customizations made to it.</p> <pre><code>&lt;activity android:name=".ActivityA" android:label="ActivityA" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="ActivityB" android:label="ActivityB" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; </code></pre> <p>as far as I know, this should definitely not be happening, and works fine after you clear the history stack the first time.</p> <p>Thanks</p> http://stackoverflow.com/questions/995719/android-trial-applications 4 Android Trial Applications Tom 2009-06-15T11:57:52Z 2009-12-04T08:09:27Z <p>Hello, I have a application which I want to hit the market as a Paid app. I would like to have other version which would be a "trial" version with a time limit of say, 5 days?</p> <p>How can I go about doing this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1838055/pause-music-player-on-a-phone-call-and-again-resume-it-after-phone-call-in-androi 1 Pause music player on a phone call and again resume it after phone call in android mudit 2009-12-03T06:28:07Z 2009-12-03T19:29:27Z <p>Hello,</p> <p>I am using <code>android.media.MediaPlayer</code> object to play audio files in my app. Everything works fine but when a phone call comes while a song is playing the app does not pause the media player and you can hear the song during the phone call. Please tell me how to pause media player on a phone call and again resume it after call is ended.</p> http://stackoverflow.com/questions/1837512/not-understanding-activity-stack 0 Not understanding Activity stack? Mark 2009-12-03T03:51:49Z 2009-12-03T14:08:30Z <p>Hi,</p> <p>I'm having trouble with my activities when they go in the background. I have two activities, A and B. Only A can launch B (manifest copied below). This is what I do:</p> <ol> <li>Launch the app from the app drawer (activity A)</li> <li>There's a button on A to launch B, B now is displayed.</li> <li>Hit the Home key, my app is now in the background.</li> <li>Go to the app drawer again, hit my app icon.</li> <li>Instead of resuming at ActivityB, Activity A is launched again. Why?</li> <li>If I hit the Back key now, I get shown the old ActivityB. What?</li> </ol> <p>This is very confusing. It's like Android knows my app is running, and puts a new instance of A on top of the old B instance running. I'd just expect that the application gets paused in-place, and whenever the user hits the app icon again, it just picks up where it left off (in this case, just show B again!) Below is the manifest, and the activity classes for this test are completely empty (except A which has a button to launch B).</p> <pre><code>&lt;activity android:name=".ActivityA" android:label="@string/app_name"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".ActivityB" android:label="@string/app_name"&gt; &lt;intent-filter&gt; &lt;!-- &lt;action android:name="android.intent.action.VIEW" /&gt; --&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; </code></pre> http://stackoverflow.com/questions/1837993/how-to-set-trigger-on-contacts-database-in-android 1 How to set trigger on contacts database in Android Sunieal 2009-12-03T06:12:41Z 2009-12-03T12:23:46Z <p>Hi,</p> <p>I have a requirement wherein I need a list of all the contacts that are edited/changed. </p> <p>As per the <a href="http://developer.android.com/reference/android/provider/Contacts.People.html#%5FSYNC%5FDIRTY" rel="nofollow">Android documentation,</a></p> <pre><code>_SYNC_DIRTY </code></pre> <p>will be set every time a contact is edited. But, there seems to be a <a href="http://code.google.com/p/android/issues/detail?id=4617" rel="nofollow">bug</a> in this, which makes this always set to 1 (no matter what), even is we explicitly set it to 0.</p> <p>So, I was wondering if I can create a SQLite TRIGGER on the contacts database. Such that, everytime a contact is edited, the edited contact id is populated into a different table which I can read later from my application.</p> <p>I tried this...</p> <pre><code>CREATE TRIGGER IF NOT EXISTS updated_contacts UPDATE ON 'contacts.db'.phones BEGIN INSERT INTO updated_table SET updated_id=old.person; END; </code></pre> <p>But a few problems here...</p> <p>1) 'phones' is a table in the contacts database. but, I am not sure about the name of the contacts database (here I have assumed it to be 'contacts.db').</p> <p>2) updated_table is a table on a different database 'mydatabase.db' that I have created from my application. and, I am not sure if I can set TRIGGERS across different databases.</p> <p>All this in Android 1.6</p> <p>Also, I am not sure about the permission to access native contacts database on Android.</p> <p>Is there any other way of achieving this.</p> <p>Any info regarding this would be of great help.</p> <p>Thanks.</p> http://stackoverflow.com/questions/938719/android-using-locationmanager-does-not-give-a-geo-fix 0 Android - using LocationManager does not give a geo fix lostInTransit 2009-06-02T09:46:28Z 2009-12-01T13:48:06Z <p>Hi</p> <p>I am trying to get the GPS location of my G1 using the following code</p> <p><strong>In Activity</strong></p> <pre><code>MyLocationListener myListener = new MyLocationListener(); LocationManager myManager = (LocationManager)getSystemService(LOCATION_SERVICE); myManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 0, myListener); </code></pre> <p>This is the LocationListener class</p> <pre><code>public class MyLocationListener implements LocationListener { private static double latitude; private static double longitude; @Override public void onLocationChanged(Location arg0) { latitude = arg0.getLatitude(); longitude = arg0.getLongitude(); } @Override public void onProviderDisabled(String provider) { } @Override public void onProviderEnabled(String provider) { } @Override public void onStatusChanged(String provider, int status, Bundle extras) {} public static double getLatitude() { return latitude; } public static double getLongitude() { return longitude; } } </code></pre> <p>I waited for as long as 30 seconds but none of the listener methods were called. The GPS icon shows up, stays there for some time but for some reason I don't get a fix, even outdoors in bright sunlight. I am testing on a G1 with 1.5 SDK.</p> <p>Can someone please tell me what's wrong with the code? Thanks.</p> <p>Adding log</p> <pre><code>06-02 18:30:43.143: ERROR/System(52): java.lang.SecurityException 06-02 18:30:43.143: ERROR/System(52): at android.os.BinderProxy.transact(Native Method) 06-02 18:30:43.143: ERROR/System(52): at android.os.ServiceManagerProxy.addService(ServiceManagerNative.java:146) 06-02 18:30:43.143: ERROR/System(52): at android.os.ServiceManager.addService(ServiceManager.java:72) 06-02 18:30:43.143: ERROR/System(52): at com.android.server.ServerThread.run(SystemServer.java:155) 06-02 18:30:43.152: ERROR/AndroidRuntime(52): Crash logging skipped, no checkin service 06-02 18:30:43.382: ERROR/SystemServer(52): Failure starting StatusBarService 06-02 18:30:43.382: ERROR/SystemServer(52): java.lang.NullPointerException 06-02 18:30:43.382: ERROR/SystemServer(52): at com.android.server.status.StatusBarPolicy.updateBluetooth(StatusBarPolicy.java:749) 06-02 18:30:43.382: ERROR/SystemServer(52): at com.android.server.status.StatusBarPolicy.&lt;init&gt;(StatusBarPolicy.java:282) 06-02 18:30:43.382: ERROR/SystemServer(52): at com.android.server.status.StatusBarPolicy.installIcons(StatusBarPolicy.java:337) 06-02 18:30:43.382: ERROR/SystemServer(52): at com.android.server.ServerThread.run(SystemServer.java:186) 06-02 18:30:43.382: ERROR/AndroidRuntime(52): Crash logging skipped, no checkin service </code></pre> http://stackoverflow.com/questions/1809507/android-hello-mapview-tutorial-map-tiles-do-not-load 0 Android "Hello, MapView" Tutorial - Map Tiles Do Not Load Onyx 2009-11-27T15:59:28Z 2009-11-30T07:58:48Z <p>I am new to Android software development and new to this site. I am hoping someone might have some experience with the problem I am having.</p> <p>I've been following the <a href="http://developer.android.com/guide/tutorials/views/hello-mapview.html" rel="nofollow">Hello, MapView tutorial</a> in order to not only learn the Android framework, but also the Google Maps library. I've tried my best to implement things exactly as the tutorial has instructed. My problem is that the application does load in my emulator (or even on my phone for that matter), but the map tiles do not load.</p> <p>Searching Google I found a post by someone else on another site having the same issue, but his/her problem was that the important elements added to the AndroidManifest.xml file were not in the right order. I double-checked this in mine, but everything seems to be right.</p> <p>So, I am not sure what the issue is and was hoping others have seen this before. I can provide any snippets of code, if that would help.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1818214/ime-keyboard-does-not-show-when-onclicklistener-set-for-edittext 0 IME keyboard does not show when OnClickListener set for EditText? Mark 2009-11-30T06:47:33Z 2009-11-30T06:47:33Z <p>Hi,</p> <p>I'm not sure if this is a bug or not with Android OS 1.5, but when I set an OnClickListener for an EditText, then try clicking it (using trackball), the IME keyboard no longer displays itself. With a click listener set, it displays when clicked.</p> <p>Is there another way I can request the IME keyboard to come up in the click handler? Either that, or I can add an OnTouchListener (which works correctly with IME keypad + touch) and just do something like performMotionEvent() from the click listener to simulate a real touch?</p> <p>Thanks</p> http://stackoverflow.com/questions/1811680/dial-number-without-prompt 0 Dial Number Without Prompt Pitney 2009-11-28T05:32:30Z 2009-11-29T18:49:42Z <p>I'm trying to write a function for the Android Platform that will allow me to call 911 without any sort of prompt. I have already added the permission "android.permission.CALL_PRIVILEGED" I just need a function that will dial 911 at the press of a button in my options menu.</p> http://stackoverflow.com/questions/1811721/locating-local-hospitals-in-android 1 Locating local hospitals in android Pitney Jules 2009-11-28T05:53:44Z 2009-11-29T18:48:21Z <p>I want to be able to plot every hospital within 10 miles of my current location on the map in Android. I've already started with this code as a base (<a href="http://android-er.blogspot.com/2009/11/androidlocation-with-zoom-level-control.html" rel="nofollow">http://android-er.blogspot.com/2009/11/androidlocation-with-zoom-level-control.html</a>) I just need to plot the locations of hospitals without switching to another screen. </p> http://stackoverflow.com/questions/1816300/android-respore-savedinstancestate-uri-to-imageview 0 Android respore savedInstanceState Uri to ImageView JoshKraker 2009-11-29T18:27:19Z 2009-11-29T18:27:19Z <p>I have an Image view that displays a image selected by the user from the device. When first opening the Activity, the image displays fine, but if they rotate the device, I save the selected Image's Uri to the savedInstanceState in onSaveInstanceState() and try to pull it back in the onCreate(). In onCreate the Uri is parced back out fine, but when I call ImageView.setImageURI i get in error in BitmapFactory.class. Please, what am I doing wrong?</p> <pre><code> @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); try { setContentView(R.layout.upload); } catch (Exception e) { Log.e("ERROR", "ERROR IN CODE:"+e.toString()); } if (savedInstanceState != null &amp;&amp; savedInstanceState.containsKey("SelectedImage")) { String uri = savedInstanceState.getString("SelectedImage"); uriSelectedImage=Uri.parse(uri); } if (uriSelectedImage == null) { // Look in the Device startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), 1); // Look in the SD Card // startActivityForResult(new Intent(Intent.ACTION_PICK, // android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI), 1); } else { ImageView ivImage = (ImageView)findViewById(R.id.ivImage); ivImage.setImageURI(uriSelectedImage); } Button btnSend = (Button) findViewById(R.id.btnSend); btnSend.setOnClickListener(btnSend_Click); } </code></pre> <p>Saving the state when the device is rotated:</p> <pre><code> @Override public void onSaveInstanceState(Bundle savedInstanceState) { super.onSaveInstanceState(savedInstanceState); if (uriSelectedImage != null) { String uri = uriSelectedImage.toString(); savedInstanceState.putString("SelectedImage", uri); } } </code></pre> <p>I have the stack trace of the BitmapFactory, if needed let me know and I'll post it. I just didnt want to initially because its a lot of text.</p> http://stackoverflow.com/questions/1799277/how-do-i-create-an-android-phone-ap 1 How do I create an android phone ap? Ashish 2009-11-25T19:10:04Z 2009-11-28T20:22:54Z <p>what software do I need to create an android app?</p> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android 1 Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T21:43:30Z 2009-11-28T14:05:07Z <p>I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom transformation of the data.</p> <p>I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.</p> <p>Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?</p> <p>Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?</p> http://stackoverflow.com/questions/1810768/sd-card-permission-appears-on-2-0-devices 2 "SD Card" permission appears on 2.0 devices? Mark 2009-11-27T22:03:18Z 2009-11-27T23:26:06Z <p>Hi,</p> <p>I wrote an Android application. These are the permissions I requested:</p> <ul> <li>INTERNET</li> <li>ACCESS-COARSE-LOCATION</li> <li>ACCESS-FINE-LOCATION</li> <li>ACCESS-NETWORK-STATE</li> <li>CHANGE-NETWORK-STATE</li> </ul> <p>On 1.5 devices, it looks fine. I tried on a 2.0 device, and it also shows an additional permission when installing the app:</p> <ul> <li>SD CARD READ / WRITE</li> </ul> <p>is that just coming up by default now on any 2.0 device we install on? I do use Context.openFileOutput() to write a file to disk, but only to the app sandbox location, never to SD card.</p> <p>Thanks</p> http://stackoverflow.com/questions/1640799/alertdialog-multichoiceitems-listener-problems 1 AlertDialog MultiChoiceItems Listener problems. Tyler 2009-10-28T23:29:37Z 2009-11-27T22:49:30Z <p>I am currently using the AlertDialog.builder to create a multichoice list for the user (checkboxes). This works great, except we want one of the buttons to deselect all of the others in the list. </p> <pre><code>builder.setMultiChoiceItems(list, checked, new DialogInterface.OnMultiChoiceClickListener() { public void onClick(DialogInterface dialog, int item, boolean isChecked) { if(item == ANY_ITEM_BUT_0) { ((AlertDialog) dialog).getListView().setItemChecked(0, false); } } }); </code></pre> <p>When using "true" it will successfully check the box, but when using false it does not uncheck it (unless i have manually set it to true before hand.) Is there a separate listener I should be using to detect when a user clicks these? It seems to me that there are two checkmarks set, one by the "setItemChecked(0, true);", and one by actually selecting it.</p> <p>This has been driving me nuts for a couple days now, any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1804156/how-to-send-an-email-from-my-application-using-email-application 1 How to send an email from my application using email application? Jeyavel 2009-11-26T14:57:31Z 2009-11-27T16:52:11Z <p>Hi,</p> <p>How to send an email from my application using email application?</p> <p>I am having the one scenario like send email to particular mail id(info@jeltech.com). In my application while clicking the link it should call email application and then need to pass above mail id to in "To" box (after login) . </p> <p>Is there any solution for this issue?</p> <p>Regards,<br> Jeyavel N</p> http://stackoverflow.com/questions/1805895/android-battery-in-sdk 1 Android Battery in SDK Jeremy Edwards 2009-11-26T22:15:07Z 2009-11-26T22:22:35Z <p>Is there a way to get battery information from the Android SDK? Such as battery life remaining and so on? I cannot find it through the docs.</p> http://stackoverflow.com/questions/1801500/activity-process-lifecycle-when-to-save-load-data-to-from-disk 1 Activity / process lifecycle - when to save/load data to/from disk mark 2009-11-26T04:14:47Z 2009-11-26T06:58:18Z <p>Hi,</p> <p>My app is made of two activities, A and B. I'm considering this sequence of steps:</p> <ul> <li>Activity A is started.</li> <li>A launches B [A is paused, B is running].</li> <li>B launches a map intent [A and B are both paused now].</li> </ul> <p>Now the user is using the maps application and the system decides it needs more memory. Can the system kill <strong>only one</strong> of my activities for memory, or will it always kill <strong>all</strong> activities in a "process" in this situation? </p> <p>Both activities share some static data like:</p> <pre><code>class Data { public static String mName; public void save() { // write to file: mName; } public void load() { // mName = read from file; } } ActivityA.mTextView.setText(Data.mName); ActivityB.mListView.addText(Data.mName); </code></pre> <p>so when any activity in my app gets onSaveInstanceBundleSate() called, I call Data.save() to write it to disk. Now the question is, in an Activity's onCreate() method, should I simply check to see if Data.mName == null, and if so, assume the Activity is returning from a kill state, and try restoring from disk again? I'm unclear when this restoring should be done, considering Activity A may or may not still be alive etc. - and I don't want to corrupt state if Activity A is still alive but B is coming back from a kill state,</p> <p>Thanks</p> <p>Thanks</p> http://stackoverflow.com/questions/1789056/reasonable-size-of-data-to-store-in-bundle-on-onsaveinstancestate 0 Reasonable size of data to store in Bundle on onSaveInstanceState()? Mark 2009-11-24T09:55:39Z 2009-11-26T02:37:50Z <p>Hi,</p> <p>My android app fetches a JSON structure from the net. It's somewhat large, maybe 2,000 characters in length. I need to store it away when my app gets killed so I can recover it quickly. I've tried saving it to an sqlite database, but that takes about 400ms, kind of long. I wonder if it's bad practice to just dump it into the save bundle:</p> <pre><code>protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); String jsonString = myObject.toString(); outState.put("test", jsonString); } </code></pre> <p>or are we really only supposed to be putting the smallest of items in bundles?</p> <p>Thanks</p>