[android-developers] Android Accessories - parallel read/write

2015-03-24 Thread AJ
Hi, I have been exploring on developing an Android accessory, but I have a basic doubt before I conclude it is feasible or not. The UsbManager class has a openAccessory API, which returns a ParcelFileDescriptor instance. The ParcelFileDescriptor instance is used to create one instance each of

[android-developers] [OFF] Site de Charges – Tirinhas – CT6

2015-03-24 Thread Psy Khé
Senhores, Venho apresentar meu Recente Site – Protótipo (CT 6 – We Will See – Take Notice), Acesse: http://bit.ly/ct6-istgroup O qual tem por Finalidade Agregar – Mostrar - Charges e Tirinhas de vários sites de terceiros. Para quem curte esse tipo de conteúdo é interessante passar por lá, e con

Re: [android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread Daniel Chacon
So i tried this right on the main page of the app and works using the path that the other one is using. ImageView imageView = (ImageView) findViewById(R.id.imageView); Picasso.with(this) .load("http://www.site.com/imgs/inventory/Video Game/3_1_Vanellope.jpg")

Re: [android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread Daniel Chacon
Can anyone see why the image wouldnt show up, if it is getting a valid path? On Tue, Mar 24, 2015 at 11:50 AM, Daniel Chacon wrote: > yes, it has had since i started.. > > this is what i have in the manifest > > android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> > > On Tue,

Re: [android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread Daniel Chacon
yes, it has had since i started.. this is what i have in the manifest On Tue, Mar 24, 2015 at 11:43 AM, Steve Gabrilowitz wrote: > Does your app have internet permission? > On Mar 24, 2015 12:40 PM, "Daniel Chacon" wrote: > >> yea after posting and reading over my code and other foun

Re: [android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread Steve Gabrilowitz
Does your app have internet permission? On Mar 24, 2015 12:40 PM, "Daniel Chacon" wrote: > yea after posting and reading over my code and other found, i had already > moved the listview binding code to the postexecute portion and works.. > But today im trying to get the imageview to show the pict

Re: [android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread Daniel Chacon
yea after posting and reading over my code and other found, i had already moved the listview binding code to the postexecute portion and works.. But today im trying to get the imageview to show the picture per record, but again getting the error and cant seem to find in the logcat file why its fail

[android-developers] Re: Unfortunately App has stopped is the error im getting and not sure why, all breakpoints make it thru no problem and then the message.

2015-03-24 Thread George Baker
I believe your problem is that you aren't returning the list from the background thread (doInBackground()). I can't tell from your changes where you are assigning a value to the items variable in you adapter constructor but it really should be from the result returned from your doInBacground()