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.

2016-09-06 Thread Palivela Rakesh
Hi, How you resolved the issue. I am also facing the same problem. On Wednesday, March 25, 2015 at 10:44:45 PM UTC+8, Dan Cha wrote: > > Original issue resolved, moved my current image issue to new post, thank > you for the help everyone. > >

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-25 Thread Daniel Chacon
Original issue resolved, moved my current image issue to new post, thank you for the help everyone. https://groups.google.com/forum/?hl=en#!topic/android-developers/ivTJ23kXRPY On Tue, Mar 24, 2015 at 5:22 PM, Daniel Chacon cuban...@gmail.com wrote: So i tried this right on the main page of

[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()

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
yes, it has had since i started.. this is what i have in the manifest uses-permission android:name=android.permission.INTERNET / uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE / On Tue, Mar 24, 2015 at 11:43 AM, Steve Gabrilowitz steveg1...@gmail.com wrote: Does

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

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 cuban...@gmail.com 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

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 cuban...@gmail.com wrote: yes, it has had since i started.. this is what i have in the manifest uses-permission android:name=android.permission.INTERNET /

[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-23 Thread Dan Cha
So i moved these lines to onPostExecute and it loads my page with the appropriate number of rows, but nothing is populated. In the items there are the 26 rows that should be returned, and now the page loads 26 rows but no data is seen on the page. protected void onPostExecute(Void result)