[android-developers] Camera App

2011-05-24 Thread New Developer
On my Zoom's home Screen it has the camera app, which has a button for front and back camera and then a slider/button for video or photo When it saves a photo is it IMG_mmDDhhMMss.jpg All of which is great / perfect Using the following code ContentValues values = new ContentValues();

Re: [android-developers] Slow motion video

2011-05-27 Thread New Developer
Anyone got an idea how to implement slow motion ? or at least slow down the playback of a video ? thanks in advance On May 24, 2011, at 7:19 PM, TheBear wrote: > I am able to play back video using the mediaplayer with the standard > video control buttons. > > My question is how can I use a s

Re: [android-developers] Slow motion video

2011-05-30 Thread New Developer
IF this was answered I apologize But I have not been receiving mail from the android-developers mailing list since friday anyhow that has been fixed. Are there any ideas on how to implement slow motion ? Is there a way to tap into or Override the VideoView play thread ? Or should I use some

[android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-02 Thread New Developer
I'm trying to do something similar Inside my button's OnClick I have ViewmyView = arg0.getRootView(); myView.setDrawingCacheEnabled( true ); mPDF.addImage( myView.getDrawingCache() ); I'm hoping this will capture the screen to a bitmap my PDF.addImage is as follows: public void

[android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-02 Thread New Developer
Okay I output my bitmap to file as PNG and it only shows the visible portion of the layout What is currently seen on the screen not the entire layout. So would I change the onClick Code to capture the entire layout ? thanks in advance On Jun 2, 3:35 pm, New Developer wrote: > I'm t

Re: [android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-03 Thread New Developer
gt; i wanted to capture all the three. > > Regards, > Bharathiraja R > > On Fri, Jun 3, 2011 at 1:39 AM, New Developer wrote: > Okay I output my bitmap to file as PNG and it only shows the visible > portion of the layout > What is currently seen on the screen not the

[android-developers] Image On Scroll View

2011-06-04 Thread New Developer
Is it possible to put an ImageView on a ScrollView and yet still be able to have an onTouchEvent for the ImageView ? I have an ImageView that uses OnTouchEvent for drawing , measuring and marking points etc... But when I place this on a ScrollView background, it appears the two onTouchEvents

[android-developers] Spinner

2011-06-06 Thread New Developer
Is it possible to preload the spinner adapter with a list of item (either from database or from array) BUT to NOT run the selection while the screen is built or being displayed. But rather only called when the user has clicked and selected an item ? Currently I have a spinner and use the setO

[android-developers] Transparent items

2011-06-06 Thread New Developer
I have on the main layout and FrameLayout which by default is blank or empty I then select between two radio buttons radio Button 1 Loads client_single.xml and radio Button 2 Loads client_multiple.xml into the above parent layout using the following FrameLayoutparent = (FrameL

[android-developers] Delete a variable

2011-06-08 Thread New Developer
I have an ImageView that I keep changing the picture Bitmap pictBM = BitmapFactory.decodeFile("/sdcard/DCIM/"+CURRENT_IMAGE); image.setImageBitmap(pictBM); parent.addView(image); After 4 or 5 pictures I get a OutOfMemory crash In c++ there is .free() or .destroy() call What do you use in

Re: [android-developers] Delete a variable

2011-06-09 Thread New Developer
assign your object to null or > ensure it goes out of scope then java wilĺ treat it as no longer referenced. > Regards,Sy > > >> On 9 Jun 2011 04:11, "TreKing" wrote: >> >> On Wed, Jun 8, 2011 at 9:05 PM, New Developer wrote: >> > >> > B

Re: [android-developers] Slow motion video

2011-06-11 Thread New Developer
getFrameAt ? Or another means to create a slow motion play back of video ? thanks in advance On May 30, 2011, at 10:02 AM, New Developer wrote: > IF this was answered I apologize > But I have not been receiving mail from the android-developers mailing list > since friday > anyhow t

[android-developers] inflate Vs intent

2011-06-15 Thread New Developer
I have a layout with a button and EditText fields IF I call the layout using intent intent.setClass(getApplicationContext(), eedsClientActivity.class... startActivity( The Buttons have a light gray background neat black text and the EditText a white background IF I call the layout using i

Re: [android-developers] inflate Vs intent

2011-06-15 Thread New Developer
ly schedule handy... > Date In Tray - current date at glance... > WebnetMobile on Facebook and Twitter > > > > On 15 June 2011 16:33, New Developer wrote: > I have a layout with a button and EditText fields > > IF I call the layout using intent > intent.setClass(get

Re: [android-developers] Re: inflate Vs intent

2011-06-15 Thread New Developer
iced that inflate code has not so many attributes as in xml > layout files. > I generally avoid inflate for the reasons you stated. Not really sure > what is going on behind the scenes. > > On Jun 15, 6:39 pm, New Developer wrote: > > Thanks > > > > my OnCreate() has

Re: [android-developers] Re: inflate Vs intent

2011-06-16 Thread New Developer
2011, at 6:25 AM, Droid wrote: > > I think fragments can do that, but I have not got my head around them > yet. > Also, I have never changed 'part' of a layout just on its own without > redrawing all of it. Sorry I am not much help. > > > > On Jun 16, 2:46 am

[android-developers] new Fragments

2011-06-17 Thread New Developer
Could someone please clarify the method in which to use fragment There is a Main Activity which has a http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] new Fragments

2011-06-17 Thread New Developer
t tags. > > (I should probably adjust the Fragment java doc to reflect this approach as > well.) > > On Fri, Jun 17, 2011 at 4:42 PM, New Developer wrote: > Could someone please clarify the method in which to use fragment > > There is a Main Activity which has a > this f

Re: [android-developers] new Fragments

2011-06-18 Thread New Developer
: > Xav's blog post explains how to get the support library, which has > FragmentActivity, through the SDK updater: > > http://android-developers.blogspot.com/2011/03/fragments-for-all.html > > On Fri, Jun 17, 2011 at 8:16 PM, New Developer wrote: > Dianne > Thanks

Re: [android-developers] new Fragments

2011-06-18 Thread New Developer
); parent= container; return view; } } and ideas welcome Thanks in advance On Jun 18, 2011, at 10:40 PM, New Developer wrote: > I have the SDK Updater done and installed the Compatibility package > > When I putextends Fragme

Re: [android-developers] new Fragments

2011-06-19 Thread New Developer
ple/android/apis/app/index.html > > On Sat, Jun 18, 2011 at 8:10 PM, New Developer wrote: > Here is what I have can you see something obvious > > in my MainActivity I call the Fragment using > > FragmentTransaction fMgr = getFragmentManager().beginTransaction(); >

Re: [android-developers] new Fragments

2011-06-19 Thread New Developer
> Make sure you are actually getting it displayed before then trying to hide > and show it. (And after adding a fragment starts out shown so there is no > reason to hide it unless you are doing some special specific stuff.) > > On Sun, Jun 19, 2011 at 12:18 PM, New Developer w

[android-developers] Back Button

2011-06-22 Thread New Developer
You can press the "Android" Back Button and go back from Screen B -> Screen A or Activity B back to Activity A Is there anyway to catch that and get an Are You Sure ?? dialog before just going back and losing all data on screen B ? Thanks in advance -- You received this message because y

[android-developers] Calendar Problems

2011-06-22 Thread New Developer
I am able to add an event to the calendar Provided there is NO event on that day If I try to add a second event to the same day it "appears" to work Uri newEvent = cr.insert(Uri.parse("content://com.android.calendar/events"), cv); does NOT return null But the calendar shows No new eve

[android-developers] Xoom Slider

2011-06-22 Thread New Developer
Motorola Xoom has a slider for NotificationsOFF <--> On It's not quite a button and it's not quite a slider Almost a toggle button but one that works left to right not up and down ?? Any ideas how to create something similar ? Thanks in advance -- You received this message becaus

[android-developers] What has replaced getFrameAt

2011-06-25 Thread New Developer
with MediaPlayer there was a getFrameAt which would return the Bitmap of the frame At x milliseconds What has replaced this ? and How else can I get the Frame at a specific time , so I can scrub through a video much like movie studio does ? Thanks in advance ? -- You received this mess

[android-developers] Testing IAP

2012-09-14 Thread New Developer
Hi All I'm looking at adding In App Purchases to my app, to allow for features to be unlocked I have downloaded and looked through the example code (Dungeons) My question is testing Am I correct in saying, that to test you have to actually purchase the item and then process a refund for eac

Re: [android-developers] Writing in C++ code ?

2012-06-05 Thread New Developer
.info http://www.michaelleumg.info 2012-6-4 上午4:02 於 "New Developer" <mailto:secur...@isscp.com>> 寫道: By default I know that android apps are developed using Java and Eclipse does this well Is there anyway we could write our code in C++ and yet still have it "pac

Re: [android-developers] android.media.MediaController

2011-02-28 Thread New Developer
Please can someone send a link to the MediaController Source. and guide on how to install it using Mac OS X Thanks On Feb 25, 2011, at 2:59 PM, ISSCP Security wrote: > How does one control the playback speed of a video ? > > I have seen where you set the frame rate when recording, but what abo

[android-developers] XMLSerializer problem appending

2011-03-04 Thread New Developer
I'm trying to save data to the sdcard. Currently I have a working if ( xmlFile.createNewFile() ) { //Creating a new XML File Thus count = 1 we are the first entry Appending = false; Write = new FileWriter(xmlFile, false);

Re: [android-developers] Re: XMLSerializer problem appending

2011-03-04 Thread New Developer
Thanks Is there a way to append to the element ? Thanks again On Mar 4, 2011, at 11:52 AM, Streets Of Boston wrote: > You append to the file, not the the element. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to t

[android-developers] TableLayout Problem

2011-03-06 Thread New Developer
I'm trying to create a simple Table Layout Within the I can have 's but when I place an in the TableRow It crashes is an Error and ideas how I can create a table row with both an and an Thanks -- You received this message because you are subscribed to the Google Groups "Android De

Re: [android-developers] TableLayout Problem

2011-03-07 Thread New Developer
have EditTexts in TableRows: > > https://github.com/commonsguy/cw-andtutorials/blob/master/03-FancierForm/LunchList/res/layout/main.xml > > On Sun, Mar 6, 2011 at 7:54 PM, New Developer wrote: >> I'm trying to create a simple Table Layout >> Within the I can have 's

Re: [android-developers] TableLayout Problem

2011-03-07 Thread New Developer
EditTexts in TableRows: > > https://github.com/commonsguy/cw-andtutorials/blob/master/03-FancierForm/LunchList/res/layout/main.xml > > On Sun, Mar 6, 2011 at 7:54 PM, New Developer wrote: >> I'm trying to create a simple Table Layout >> Within the I can have

[android-developers] AVD Settings

2011-03-08 Thread New Developer
How does one go about getting the correct settings for an AVD ? The two I am looking for right now a) the new Galaxy 10.1 b) NotionInk Adam I have tried my best to configure the AVD for the Galaxy, but I'm looking at the quality of the icons that I have used and must say the look very poor

[android-developers] Hardware updates

2016-07-21 Thread New Developer
It has been a few years now that Google released the platform development Kit (PDK) When are we going to see manufacturers start updating their hardware to run the latest versions of android ? OR when are we going to see Google pressure manufacturers to update their hardware. When Google purc

[android-developers] Network Violation Error

2012-02-14 Thread New Developer
Hi All If I run the app using Debug (eclipse and the debug.keystore) all works well If I run the app using Export (publish keystore) I get the following D/StrictMode(26474): StrictMode policy violation; ~duration=142 ms: android.os.StrictMode$StrictModeNetworkViolation: policy=20 violation

Re: [android-developers] Network Violation Error

2012-02-14 Thread New Developer
ds] at proguard.ProGuard.main(ProGuard.java:499) Any ideas what happened, or how to fix ? Thanks again On 02/14/2012 11:00 AM, Mark Murphy wrote: On Wed, Jan 25, 2012 at 10:36 AM, New Developer wrote: If I run the app using Debug (eclipse and the debug.keystore) all works well If I run the

Re: [android-developers] Network Violation Error

2012-02-14 Thread New Developer
AM, New Developer wrote: Thanks Mark If it doesn't rain it pours Now when I try to export the app I get the following [2012-01-25 11:41:43 - eeds] Proguard returned with error code 1. See console [2012-01-25 11:41:43 - eeds] java.io.IOException: Can't read [proguard.ClassPathEntry@15301

Re: [android-developers] Network Violation Error

2012-02-14 Thread New Developer
I can't find anything similar on a google search, They have one that talks about a class, and thus the class is corrupt But my error does not have a class, so I don't know what is corrupt or not ? any ideas ? On 01/25/2012 11:56 AM, New Developer wrote: Thanks I did that I sti

Re: [android-developers] Network Violation Error

2012-02-14 Thread New Developer
Not working yet But at least with the new proguard It talks about can't read android-13.jar so I'll try re-download the android 13 SDK Thanks On 02/14/2012 02:51 PM, Harri Smått wrote: On Jan 25, 2012, at 9:27 PM, New Developer wrote: any ideas ? When I faced problems with ProG

Re: [android-developers] Network Violation Error

2012-02-14 Thread New Developer
That did it for me thanks to all On 01/25/2012 03:07 PM, New Developer wrote: Not working yet But at least with the new proguard It talks about can't read android-13.jar so I'll try re-download the android 13 SDK Thanks On 02/14/2012 02:51 PM, Harri Smått wrote: On Jan 25, 201

[android-developers] trilead ssh2 library

2012-02-14 Thread New Developer
I'm trying to use the trilead ssh2 library to establish a scp connection If I create the apk using the debug/run then the code works fine If I export and sign the apk then the code generates the following logcat error W/System.err( 1974): java.lang.Exception: Error occured connecting:

Re: [android-developers] trilead ssh2 library

2012-02-14 Thread New Developer
somehow relate to the problem I am seeing a) debug build apk's don't mind whereas b) exported signed apk'sdo mind ? Why else would the code work if done using a debug apk but fail if using a signed apk ? Thanks in advance On 01/25/2012 03:21 PM, New Developer wrote

Re: [android-developers] trilead ssh2 library

2012-02-14 Thread New Developer
Thank you !! Yes I disabled ProGuard as you suggested and now suddenly all works well Do you have some links to help inform/teach how to fine-tune as you further suggested Thanks On 02/14/2012 11:08 PM, Nikolay Elenkov wrote: On Thu, Jan 26, 2012 at 12:54 PM, New Developer wrote: Can

[android-developers] keystore files

2012-02-15 Thread New Developer
I now have two keystore files debug.keystore and publish.keystore with a password Is there anyway to link the publish.keystore to a) the Debug button / debug configuration and/or b) the Run button / run configuration Currently I have to export the project to create the signed

Re: [android-developers] keystore files

2012-02-16 Thread New Developer
nce On 02/15/2012 11:34 AM, TreKing wrote: On Thu, Jan 26, 2012 at 7:17 AM, New Developer <mailto:secur...@isscp.com>> wrote: Is there anyway to link the publish.keystore to a) the Debug button / debug configuration That's the default. When you hit Debug / Run, it

Re: [android-developers] keystore files

2012-02-16 Thread New Developer
e password = android, and alias = androiddebugkey ? Thanks On 02/16/2012 09:24 AM, New Developer wrote: Thanks I'm trying to configure it to use the publish one for the Debug/Run AS the default when I copy publish.keystore to debug.keystore I get Error generating final archive: java.i

Re: [android-developers] keystore files

2012-02-16 Thread New Developer
password of yout publlish key to "android" which same as debug.keystore: http://developer.android.com/guide/publishing/app-signing.html 2012/2/16 New Developer mailto:secur...@isscp.com>> Thanks I'm trying to configure it to use the publish one for the Debug

Re: [android-developers] keystore files

2012-02-16 Thread New Developer
delete and uninstall each time Thanks again On 02/16/2012 10:08 AM, TreKing wrote: On Thu, Feb 16, 2012 at 8:24 AM, New Developer <mailto:secur...@isscp.com>> wrote: If I have different keystores then I have to continually uninstall the app because the keystore changes Tryin

[android-developers] Mounting multiple devices at once

2012-02-18 Thread New Developer
Using Linux I have set up my /etc/fstab to mount using fuse and mtpfs But How do I set up to mount multiple devices at once. Would like to be able to connect two or three tablets and transfer data between them Thanks in advance -- You received this message because you are subscribed to the

[android-developers] Multiple many many thumbnails

2012-03-04 Thread New Developer
Hi All I'm trying to have users find their pictures using thumbnails much like gallery (and also like the Golf Channel app) However, sadly I keep running out of memory after loading 20 - 30 thumbnails Any tricks to get through this limit Thanks in advance -- You received this message becaus

Re: [android-developers] NoClassDefFoundError in Google Maps

2011-04-12 Thread New Developer
Have you checked to see you have the API installed correctly? I had the same with the calendar would compile but then crash at runtime 1) From Project Right Click -> New -> Folder call it libs 2) Right Click -> Import -> File System -> find the .jar file(s) and add them to the libs dir

[android-developers] Spinner with added Text

2011-04-18 Thread New Developer
Hi Using a Spinner Is there a way while using (or from the UI) to type in a new option Say I have a spinner with a list of calendars (actually list of .ics files) Now I want to create a NEW calendar Using a Spinner how do I type in the new name and it is added to the drop down list? thank

Re: [android-developers] Re: Spinner with added Text

2011-04-18 Thread New Developer
So many so quick YEs I mean typing it into the spinner, but I like the idea of an option in the spinner is Add New Calendar might work are there any other ways ? Thanks again On Apr 18, 2011, at 1:47 PM, TreKing wrote: > On Mon, Apr 18, 2011 at 12:21 PM, Kenny Riddile wrote: > On 4/18/201

[android-developers] multiple apks

2011-04-25 Thread New Developer
If one wanted to create a large application where each activity was it's own apk almost like modules or .dlls 1) How would you test to see if an .apk file is available and/or installed (might be different I don't know) ? 2) Using the emulator how can you permanently install the .apk ? 3

[android-developers] Contacts App

2011-05-06 Thread New Developer
Hi could someone explain How the Contact app creates a scroll bar that displays the Alphabet as you go down ? and group the contacts by first letter Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Digest HttpS connection

2011-05-08 Thread New Developer
I keep finding code snippets for use with https none have worked either get a 401 error or some other error Any got or know a full working tutorial that uses httpS not http and Digest Authentication that shows how to send and receive data from a website using these two parameters htt

Re: [android-developers] Digest HttpS connection

2011-05-09 Thread New Developer
em. > > Full working sample code! Ah!! I don't think anyone has so much time for > that. > > Kumar Bibek > http://techdroid.kbeanie.com > http://www.kbeanie.com > > > > On Sun, May 8, 2011 at 11:29 PM, New Developer wrote: > I keep finding code snippet

[android-developers] Serial Number

2011-05-10 Thread New Developer
When I start or connect my Xoom I get in Console [2011-05-10 21:15:29 - eeds] Automatic Target Mode: Unable to detect device compatibility. Please select a target device. [2011-05-10 21:16:20 - eeds] Uploading new.apk onto device '0288...b397' [2011-05-10 21:16:22 - eeds] Installing new.apk...

[android-developers] Clone Device to sdcard.img

2011-05-13 Thread New Developer
Is there a method (using Mac OS X) would be great That I can connect my Android Device (non-rooted) and clone it to become my sdcard.img so I can use it for the emulator and thus continue developing on the emulator Yet using all the apps and software features of the device? If possible cou

[android-developers] Dynamic rows in a TableLayout

2011-03-13 Thread New Developer
Hi I 'm trying to add dynamic rows to a table layout I current have an image button (to add) and then it runs the code TextView txt02 = new TextView(row.getContext()); txt02.setId(102000 + table.getChildCount() + 1); txt02.setTextSize(TypedValue.COMPLEX_UNIT_PT, 10);

[android-developers] Memory Allocation

2011-03-15 Thread New Developer
When creating a spinner list that can be added to by the user over time. Is it best to store this in an XML Array file red orange Or in a text file and load the data into an ArrayAdapter each time the spinner is visible ? Also IF I have three activities (screen

Re: [android-developers] Re: Memory Allocation

2011-03-16 Thread New Developer
> See here for more information: > http://developer.android.com/resources/tutorials/views/hello-spinner.html > > Bye! > > On 15 Mar, 14:56, New Developer wrote: >> When creating a spinner list that can be added to by the user over time. >> Is it best to stor

[android-developers] DDMS

2011-03-19 Thread New Developer
I'm looking at the Heap in DDMS TypeCount Total Size SmallestLargest Median Average 1-byte array (byte[]. boolean[])2,189 9.594 MB24 B 2.347 MB48 B4.487 KB How d

[android-developers] findViewById returning NULL

2011-03-25 Thread New Developer
Sometimes not always the following line final ExpandableListView menuView= (ExpandableListView) findViewById(R.id.menuListing); may or may not return null and thus aborts with a NullExceptionError Any ideas how to fix this permanently to always return a valid thanks in advance -- You re

Re: [android-developers] findViewById returning NULL

2011-03-26 Thread New Developer
id plugin might not catch this > kind of thing, and so you wouldn't find out until runtime that it > wasn't in both layouts. > > > On Fri, Mar 25, 2011 at 2:56 PM, New Developer wrote: >> >> Sometimes not always the following line >> final E

Re: [android-developers] findViewById returning NULL

2011-03-26 Thread New Developer
; > eclipse didn't insert an import to "(something I forgot).R.*" did it? > Seems like it will do that sometimes. Of course, you can do a > Project-->Clean, but it may come back anyway in this case > > let me know when you figure it out what it is > > On

[android-developers] Scrollbar not working

2011-03-27 Thread New Developer
I have the following in the XML I add the items dynamically from a database using private ListView listView = null; listView = (ListView) findViewById(R.id.main_list); listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE); It shows a very narrow scrollbar. But the list does

Re: [android-developers] Re: findViewById returning NULL

2011-03-27 Thread New Developer
Thanks It would appear I'm the same as Doug and did as you requested OS: Mac OS X 10.6.6 Eclipse: Helios SR2 ADT: 10.0.0 thanks again -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

Re: [android-developers] Scrollbar not working

2011-03-27 Thread New Developer
not it is an Android phone -- before you start attempting to write > Android applications. > > On Sun, Mar 27, 2011 at 8:11 AM, New Developer wrote: >> I have the following in the XML >> > android:layout_width="fill_parent" >> android:la

[android-developers] Xoom Camera Settings

2011-03-28 Thread New Developer
If anyone has a Motorola Xoom and is willing to help could you please take a few pictures (at different zoom settings) so I can test my EXIF reader application. I am also needing the exact specs of the camera used in the Motorola Xoom CCD size, etc... Thanks in advance -- You received this

[android-developers] ImageView Draw and Measure lines

2011-03-29 Thread New Developer
I have created an ImageView image = new ImageView(myMainActivity.this); Bitmap pictBM = BitmapFactory.decodeFile(fName); image.setImageBitmap(pictBM); . . . How do I create an overlay or something so I can click an ImageButton and then mark two points draw a line between them and measure the d

[android-developers] Backup Manager Error

2011-03-31 Thread New Developer
I have searched the web the closest I could get is 2.2 but I'm using 3.0 (Honeycomb) on my emulator and I keep getting the following 03-31 07:07:46.413: INFO/PerformBackupThread(82): Initializing (wiping) backup state and transport storage 03-31 07:07:46.515: ERROR/PerformBackupThread(82): Erro

Re: [android-developers] Backup Manager Error

2011-04-03 Thread New Developer
Is No one else seeing the PerformBackupThread error using Honeycomb and the emulator ?? On Mar 31, 2011, at 7:19 AM, New Developer wrote: > I have searched the web the closest I could get is 2.2 but I'm using 3.0 > (Honeycomb) on my emulator and I keep getting the following >

[android-developers] External code files

2011-04-06 Thread New Developer
Within a single Activity.java file I can have button1.setOnClickListener( new mylistener1() ); button2.setOnClickListener( new mylistener2() ); button3.setOnClickListener( new mylistener3() ); and then private class mylistener1 implements OnClickListener { @Override public void o

Re: [android-developers] External code files

2011-04-06 Thread New Developer
Thanks then I can just use the single std onClick() Thanks didn't think of that On Apr 6, 2011, at 8:39 AM, Marcin Orlowski wrote: > > On 6 April 2011 13:43, New Developer wrote: > Within a single Activity.java file I can have > > button1.setOnClickListe

[android-developers] Using Google Calendar API

2011-04-10 Thread New Developer
anyone solved the use of Google Calendar API ? tried the method from http://jimblackler.net/blog/?p=151 content://calendar/calendars" andcontent://com.android.calendar/calendars" I get the ERROR Failed to find provider info for com.android.calendar when I try the google gdata api's

Re: [android-developers] Re: Using Google Calendar API

2011-04-11 Thread New Developer
dar or calendar provider applications. > > You can build (from the platform sources) and install your own > calendar provider APK on the emulator though. > > > On 10 Apr, 21:08, New Developer wrote: >> anyone solved the use of Google Calendar API ? >> >> trie

Re: [android-developers] Re: Using Google Calendar API

2011-04-11 Thread New Developer
articular provider for one phone > manufacturer already). > > On 11 Apr, 09:52, New Developer wrote: >> Thanks, Jens >> >> Yes this is on the emulator >> >> Can you please tell me more about the Platform sources option and tutorials >> to explain jus

[android-developers] Convert PDF to Thumbnail JPG

2012-04-11 Thread New Developer
Is there a method to convert the first Page of a PDF to a Thumbnail JPG ? Is it a part of the PDF reference manual ? Thanks in advance -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers

Re: [android-developers] Convert PDF to Thumbnail JPG

2012-04-11 Thread New Developer
11:09 AM, Mark Murphy wrote: This has nothing to do with Android. On Wed, Apr 11, 2012 at 11:07 AM, New Developer wrote: Is there a method to convert the first Page of a PDF to a Thumbnail JPG ? Is it a part of the PDF reference manual ? Thanks in advance -- You received this message because

[android-developers] Writing in C++ code ?

2012-06-03 Thread New Developer
By default I know that android apps are developed using Java and Eclipse does this well Is there anyway we could write our code in C++ and yet still have it "packaged" and create an apk that runs ? Trying to find the best method to create multi platform applications that run on Android, iOS,

[android-developers] seekbar to be more accurate

2012-01-12 Thread New Developer
I'm using a seekbar to display and reposition at a frame in a video, using: private class frameChanger implements OnSeekBarChangeListener { @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { if (fromUser && isVideo) { Log.e("Frame C

[android-developers] Read Heap from DDMS

2012-01-15 Thread New Developer
Is there a resource or link that helps you read what is going on with your app I'm plagued by an out of memory error and I have no idea why TypeCount Total Size Smallest LargestMedian free 929 927.031

Re: [android-developers] Read Heap from DDMS

2012-01-15 Thread New Developer
136 ..\ * *mBGDrawable*android.widget.FrameLayout @ 0x411e5230 464 1,072 ...\ * *[0]*android.view.View[12] @ 0x41234ea0 64 24,168 I'm not seeing a variable name, Is there anyway to find What variables or Which Bitmap this is that is 2M in size ? Thanks

[android-developers] Irregular shapes on an imageview

2012-01-29 Thread New Developer
Hi All Any thoughts how you can make Irregular shapes on an ImageView a touch button Think of a map with countries and islands. Any way to accurately color each country/island when clicked ? Thanks in advance -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Overlay Images

2012-02-06 Thread New Developer
I have 4 ImageViews one stacked on top of the other all the same size, each ImageView has it's own associated canvas that I can access. Thus allowing me to view "layers" of a single image on screen. I now wish to save this screen image to a file. How can I merge the canvases into one image?

Re: [android-developers] Overlay Images

2012-02-06 Thread New Developer
st. On 6 February 2012 13:18, New Developer wrote: I have 4 ImageViews one stacked on top of the other all the same size, each ImageView has it's own associated canvas that I can access. Thus allowing me to view "layers" of a single image on screen. I now wish to save this sc

Re: [android-developers] Overlay Images

2012-02-07 Thread New Developer
he one is mutable and the other not, they are simply jpg files are they not ? On 02/06/2012 09:10 AM, Daniel Drozdzewski wrote: Ok, Create a LayerDrawable object and keep adding to it Drawable objects (LayerDrawable.setDrawableByLayerId (int id, Drawable drawable)) extracted from each of your st

Re: [android-developers] Overlay Images

2012-02-07 Thread New Developer
It would appear to fail because scale is 1.00 or the matrix is the identity matrix testing for scale == 1.000 and setting it to 0.98 makes the code work and produces the falsefalse true false Why ? On 02/07/2012 07:50 AM, New Developer wrote: Thanks I got that to work however

[android-developers] Invert and entire Bitmap

2012-02-07 Thread New Developer
Is there a process/function to invert the colors of an entire bitmap or canvas ? Not just a black and white image that becomes white and black But a full color image, where the color is inverted ? Thanks in advance -- You received this message because you are subscribed to the Google Groups "A

[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 pos

Re: [android-developers] DLL equivalent in android

2012-02-09 Thread New Developer
ng to now achieve but with android. Thanks again On 02/09/2012 12:49 PM, Kristopher Micinski wrote: On Thu, Feb 9, 2012 at 12:42 PM, New Developer <mailto:secur...@isscp.com>> wrote: In Windows programming we have DLL so that we can build modules If the DLL exists t

[android-developers] Help Urgent

2012-02-09 Thread New Developer
Help please I got an error message saying "Debug Certificate expired on" So I did a web search and found an article that had said delete the debug.keystore Thankfully (or not) I moved mine but now it says Re-installation failed due to different application signatures. [2012-02-09 16:53:13 - Y

Re: [android-developers] Help Urgent

2012-02-09 Thread New Developer
Sorry please ignore this I hit the wrong key On 02/09/2012 04:56 PM, New Developer wrote: Help please I got an error message saying "Debug Certificate expired on" So I did a web search and found an article that had said delete the debug.keystore Thankfully (or not) I moved mine

[android-developers] Help with signatures

2012-02-09 Thread New Developer
Help please I got an error message saying "Debug Certificate expired on" So I did a web search and found an article that had said delete the debug.keystore Thankfully (or not) I moved mine but now it says Re-installation failed due to different application signatures. [2012-02-09 16:53:13 - Y

Re: [android-developers] Help with signatures

2012-02-09 Thread New Developer
Okay I had to Clean and rebuild the Project So it is not warning about difference signatures But Now still has the Debug Certificate expired error ? Please help On 02/09/2012 04:57 PM, New Developer wrote: Help please I got an error message saying "Debug Certificate expired on&q

Re: [android-developers] Help with signatures

2012-02-09 Thread New Developer
Okay I have changed my date back to Jan 2012 Is there anyway to extend the Certificate without going through the adb uninstall ?? Thanks On 02/09/2012 05:15 PM, New Developer wrote: Okay I had to Clean and rebuild the Project So it is not warning about difference signatures But Now

Re: [android-developers] Help with signatures

2012-02-09 Thread New Developer
But deleting the debug.keystore results in having to delete the data on the device, and I can't do that either Thanks On 02/09/2012 07:35 PM, Mark Murphy wrote: On Fri, Jan 20, 2012 at 8:15 PM, New Developer wrote: Okay I have changed my date back to Jan 2012 Huh? Just delete

  1   2   >