[android-developers] Re: Multi-pane Layout best practice

2014-11-12 Thread Marty Rehder
Perhaps you could create a method to set the listener and call that from the Activity? If A_MAIN invokes the fragment F_DET, then it should set the listener of A_DET is the parent, then it should call the set listener method. Marty On Sunday, October 26, 2014 5:03:55 AM UTC-5, Sergio Panico

[android-developers] Re: Development on platform?

2013-04-01 Thread Marty Rehder
I wasn't thinking so much about using the emulator or real device to test with, but rather a real device on which you would write code itself and subsequently run the app. While Eclipse won't run on Android, there is at least one app, AIDE, that allows one to edit, compile and run Android

[android-developers] Development on platform?

2013-03-31 Thread Marty Rehder
Just curious as to how many people actually develop Android codes on an Android device. Is is feasible to try and do any serious development on a tablet or phone ? interested in hearing others thoughts -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Is there a way to dismiss the Contextual Action Bar (CAB) menu?

2013-03-22 Thread Marty Rehder
I have an app with a series of files in being shown via an Activity. Each file has a checkbox. If the user clicks any of the chedckboxes, I bring up the CAB menu for the user to operate on the file. My onClickListener starts things, and, I was hoping, could dismiss the CAB if the checkboxes are

[android-developers] Re: MediaMetadataRetriever extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE) gets null

2013-03-22 Thread Marty Rehder
For others who may be interested, I ended up implementing a 3rd party library MyID3 http://www.fightingquaker.com/myid3/ Works well enough. A shame the real Android tools doesn't read the exact same data/same file like this library can. On Thursday, March 21, 2013 3:47:19 PM UTC-5, Marty

[android-developers] MediaMetadataRetriever extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE) gets null

2013-03-21 Thread Marty Rehder
I'm trying to retrieve the MP3 tags from some music files I set up the folder and path to the file and set thet data source to extract metadata. However, I'll getting null for just about all tags. I get the proper duration and bitrate, so I know I'm getting to the right file, and I can even

[android-developers] MediaMetadataRetriever extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE) gets null

2013-03-21 Thread Marty Rehder
I'm trying to get mp3 tags from some music files MediaMetadataRetriever mmr = new MediaMetadataRetriever(); File filenm = new File(path, availableFiles[0]); mmr.setDataSource(showFileActivity.this,Uri.fromFile(filenm)); String column =