Re: [android-developers] Re: Image is being oriented differently once uploaded to server, why?

2015-04-13 Thread Daniel Chacon
Yea that i had found and attempted to implement within my existing code, but everything works fine within the phone/device, but not when uploaded. int rotate = 0; try { BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 10;

Re: [android-developers] Re: Where in code would i resize an image taken using intent?

2015-04-11 Thread Daniel Chacon
So what you are doing is resizing before or after being saved or uploaded? On Sat, Apr 11, 2015 at 6:59 AM, Dave Truby wrote: > Dan, > > I am doing the following in my Over Time app. Maybe it helps you. > > > File aThumbnail = new File(pDir, TbsFile.THUMBNAIL_FILENAME); > > final float aRatio =

Re: [android-developers] Trying to better understand how to add menu's to the pages within my app

2015-04-08 Thread Daniel Chacon
Ok, so after reading some of the information and making a few tweaks to the existing setup on the pages, Here is what im trying to accomplish. So this is a really stripped down version of what the app looks like. This app is for inventorying personal items.. The main pages of the app are merel

Re: [android-developers] Proper way to setup app to notify user(if opt in) when new items are added to database

2015-04-08 Thread Daniel Chacon
thank you, i will begin to review that.. On Mon, Apr 6, 2015 at 4:31 PM, Justin Anderson wrote: > That would probably be a push notification > > On Mon, Apr 6, 2015, 4:23 PM Dan Cha wrote: > >> So working on a app that will list inventory items for a few users.. IF >> the user opts to be notifi

Re: [android-developers] Trying to get the value of the selected spinner item

2015-04-02 Thread Daniel Chacon
Found a solution and seems to work.. catid.setName("catid"); String vid = categoryItems[spinCat.getSelectedItemPosition()].CatId; catid.setValue(vid); On Thu, Apr 2, 2015 at 4:03 PM, Dan Cha wrote: > So I have 2 dropdowns in my app, once with list of categori

Re: [android-developers] Sending and receiving SMS within my own app and not show in the built in text app

2015-04-01 Thread Daniel Chacon
I appreciate the feedback and suggestions, i was able to find something that seems to be working.. Since this was not going to be a messaging app, but an app that had a small messaging feature in it, i was looking for the easiest way to implement something. After the comments above, i was able to g

Re: [android-developers] Sending and receiving SMS within my own app and not show in the built in text app

2015-03-31 Thread Daniel Chacon
> >> You should 100% *not* be doing that. It's bad design, and it could > >> potentially cost your users money (if they pay for their texts). > >> > >> You can use an intent, content provider, or AIDL, and it will be way > >> easier and much more obv

Re: [android-developers] Sending and receiving SMS within my own app and not show in the built in text app

2015-03-31 Thread Daniel Chacon
So found this example for data sms http://stackoverflow.com/questions/3757229/how-to-send-and-receive-data-sms-messages On Mar 31, 2015 8:40 PM, "Steve Gabrilowitz" wrote: > So basically, you are trying to build a messenger app that uses SMS as a > transport layer but doesn't affect other SM

Re: [android-developers] Sending and receiving SMS within my own app and not show in the built in text app

2015-03-31 Thread Daniel Chacon
, content provider, or AIDL, and it will be way > easier and much more obvious how to deal with than trying to hack it > like this. > > Kris > > > On Tue, Mar 31, 2015 at 7:31 PM, Daniel Chacon wrote: > > First it seemed easier to use sms to communicate between the a

Re: [android-developers] Sending and receiving SMS within my own app and not show in the built in text app

2015-03-31 Thread Daniel Chacon
First it seemed easier to use sms to communicate between the apps. This will only be used internally, so no public version. If there is another way to communicate only within the app that will work also, basically don't need to have the messages in 2 places, right now when I send a message it's in

Re: [android-developers] Using the picasso image loader within custom adapter and works for only the first image, what am i doing wrong?

2015-03-26 Thread Daniel Chacon
pretty quickly. On Thu, Mar 26, 2015 at 9:33 AM, Daniel Chacon wrote: > So started working on the app again and before any new changes were made, > i ran the application and now the 1 record image that was loading is no > longer loading, can anyone see anything wrong with my implementati

Re: [android-developers] Using the picasso image loader within custom adapter and works for only the first image, what am i doing wrong?

2015-03-26 Thread Daniel Chacon
So started working on the app again and before any new changes were made, i ran the application and now the 1 record image that was loading is no longer loading, can anyone see anything wrong with my implementation of the Picasso? ive already tested the link being used and all images are available

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 wrote: > So i tried this right on the main page of the app and wo

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
e.jpg") .into(imageView); So since this works with the path, how can i embed the above line into my code to display each image path that is returned and added to my listview? On Tue, Mar 24, 2015 at 3:19 PM, Daniel Chacon wrote: > Can anyone see why the image wouldnt show

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_ST

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 readi

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

Re: [android-developers] Getting exception when clicking button to connect to soap and return dataset

2015-03-19 Thread Daniel Chacon
:35 PM, "Daniel Chacon" wrote: > >> this is the line its complaining about.. >> >> get_view_buttonView.setOnClickListener(get_view_buttonView_Listener); >> >> And here is everything within that. But like i said, this is literally a >> copy of worki

Re: [android-developers] Getting exception when clicking button to connect to soap and return dataset

2015-03-19 Thread Daniel Chacon
> > 2015-03-19 22:06 GMT+03:00 Daniel Chacon : > >> Anyone see anything that would cause the error? >> Im trying to atleast get past this issue today, i can run my other >> project which is identical other than the SOAP_ACTION, METHOD_NAME and URL. >> I basically wanted t

Re: [android-developers] Getting exception when clicking button to connect to soap and return dataset

2015-03-19 Thread Daniel Chacon
Anyone see anything that would cause the error? Im trying to atleast get past this issue today, i can run my other project which is identical other than the SOAP_ACTION, METHOD_NAME and URL. I basically wanted to start this project from a working point and it doesnt work.. On Wed, Mar 18, 2015 at

Re: [android-developers] Looking to see if adding the ability to swipe left to right is possible with our current app we are creating

2014-10-01 Thread Daniel Chacon
Suggestions or links on how to accomplish? On Fri, Sep 26, 2014 at 6:47 PM, TreKing wrote: > > On Thu, Sep 25, 2014 at 5:27 PM, Dan Cha wrote: > >> is something like that possible? > > > Yes it is. > > > ---

Re: [android-developers] Re: Beta testing of APK installation on real device

2014-07-07 Thread Daniel Chacon
While developing my app, I merely created the apk and uploaded to my personal website and provided links to it a few individuals to install and test. On Mon, Jul 7, 2014 at 12:40 AM, Damien Cooke wrote: > The Play Store has a beta feature or probably best described as a beta > store where you c

Re: [android-developers] Re: Is it possible to track mileage with the GPS on the phone?

2014-07-02 Thread Daniel Chacon
Found 2 "Zombie speed limit logger" this one says it used to log speed limit signs when you drive past. and "zombie speed limit GIT" this one has no description. both of which have 0 downloads.. what am I looking for if I download either of them? On Wed, Jul 2, 2014 at 10:53 AM, cellurl

Re: [android-developers] Is it possible to track mileage with the GPS on the phone?

2014-06-30 Thread Daniel Chacon
Im just looking to track the miles, no matter who drives the vehicle or where they go, just as long as I track miles of the vehicle, not me walking around with the phone on me. I know its not a accurate thing and im not looking to be that precise, I just want to track as close as possible so the ma

Re: [android-developers] Is it possible to track mileage with the GPS on the phone?

2014-06-25 Thread Daniel Chacon
>From what im finding the GPS demos im finding use the *android.permission.ACCESS_FINE_LOCATION which seems to be what I would use.. * *From the ones I found when searching in the store, most did what I want and some didn't(most were manually logging data)..what im looking for is to create a simple

Re: [android-developers] Is it possible to access text messages to back up as they are received?

2013-12-16 Thread Daniel Chacon
ok, thanks now to find some time during the holidays to play around with this app. On Thu, Dec 12, 2013 at 9:30 PM, TreKing wrote: > > On Thu, Dec 12, 2013 at 8:46 AM, Daniel Chacon wrote: > >> Would I use the SmsManager and SmsMessage api calls? > > > Never used those

Re: [android-developers] Is it possible to access text messages to back up as they are received?

2013-12-12 Thread Daniel Chacon
Would I use the SmsManager and SmsMessage api calls? Looks like it is what I need, thank you On Wed, Dec 11, 2013 at 8:40 PM, TreKing wrote: > > On Wed, Dec 11, 2013 at 8:04 PM, Dan Cha wrote: > >> im wondering if there is a way I can build a app for myself to access my >> text, when I send or

Re: [android-developers] Re: Looking for API to gain access to my email

2013-12-11 Thread Daniel Chacon
Well I was looking to create just a simple app to clear the trash folder is all, nothing more.. just something to gain access to that folder and clear it.. I have thousands of emails in that folder that I don't need, the emails have to be stored somewhere on the phone that can be accessed and dele

Re: [android-developers] Looking for API to gain access to my email

2013-12-11 Thread Daniel Chacon
older? On Tue, Apr 23, 2013 at 1:55 PM, Daniel Chacon wrote: > Well the thing is that, these message reside on my phone and no longer on > the server. Im using the standard "Email" program on the android phone. > Connecting to my POP3 server, anything i send only shows on my ph

Re: [android-developers] How to access the call history to delete based on variable

2013-12-06 Thread Daniel Chacon
I have searched, but I guess what I was looking for is the second link you provided. I hadn't run across that one and that has other links.. thank you On Fri, Dec 6, 2013 at 9:41 AM, Justin Anderson wrote: > These links will likely help you... Please note that I found these links > by doing sim

Re: [android-developers] Is it possible to create an app that displays image gallery from a website?

2013-05-28 Thread Daniel Chacon
The site we designed was done recently using some of the latest techniques, and i was thinking of a mobile web version for the gallery section as well. Just wanted to see about an app, but the websit would be easire and faster :) On Tue, May 28, 2013 at 12:45 PM, Michael Banzon wrote: > In my h

Re: [android-developers] Re: How to redesign this basic page to be a little more??

2013-05-07 Thread Daniel Chacon
Thanks, i will have a look at that tonight when i get home in front of my pc. On Tue, May 7, 2013 at 2:03 AM, Piren wrote: > http://developer.android.com/guide/topics/ui/layout/listview.html > > > On Monday, May 6, 2013 8:31:59 PM UTC+3, Dan Cha wrote: > >> Piren, >> >> thats what im looking fo

Re: [android-developers] Re: How to redesign this basic page to be a little more??

2013-05-06 Thread Daniel Chacon
Piren, thats what im looking for, is how to take the results and feed them into a gridview so i can then allow the user to sort, page and do on if thats possible. On Sun, May 5, 2013 at 2:01 AM, Piren wrote: > Instead of building a string out of the results, just use them to feed a > ListView

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-04 Thread Daniel Chacon
bob, that worked like a charm, thank you very much.. On Sat, May 4, 2013 at 10:06 AM, Daniel Chacon wrote: > Thanks, i made the change tothe code, but need to test on the phone, so > ill know later when i get in front of the pc with the phone and run it.. > > thank you, ill

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-04 Thread Daniel Chacon
new TextView(this); >> >> setContentView(textView); >> >> textView.setMovementMethod(new ScrollingMovementMethod()); >> >> >> On Thu, May 2, 2013 at 11:58 PM, TreKing wrote: >> >>> >>> On Thu, May 2, 2013 at 11:07 PM, Danie

Re: [android-developers] Problem with Android Developer Toolkit version 21.1.0

2013-05-03 Thread Daniel Chacon
I had similar issues when i upgraded, but had to open ADT seperate from Eclipse, updated everyting, then opened Eclipse, then did another Check for updates and everything was back to normal. Now the issue i ran into after all the upgrades was that my project that would build and run in the previous

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-03 Thread Daniel Chacon
(savedInstanceState); TextView textView = new TextView(this); setContentView(textView); textView.setMovementMethod(new ScrollingMovementMethod()); On Thu, May 2, 2013 at 11:58 PM, TreKing wrote: > > On Thu, May 2, 2013 at 11:07 PM, Daniel Chacon wrote: > >> thanks, I update

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-02 Thread Daniel Chacon
thanks, I update the xml layout to match your example and still doing the same thing, Now here is my code as it stands now and everything is returned, but not scrolling as expected. package MyProject.Maintenance; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.PropertyInfo;

Re: [android-developers] Re: My published app does not appear in Google Play

2013-05-01 Thread Daniel Chacon
I can see an app "Side Effects" listing all medical side effects. On Wed, May 1, 2013 at 10:24 AM, bob wrote: > What happens when you go here? > > > https://play.google.com/store/apps/details?id=com.oryxtech.android.sideeffects > > Thanks. > > > On Wednesday, May 1, 2013 9:56:06 AM UTC-5, scray

Re: [android-developers] android.database.sqlite.SQLiteException

2013-04-30 Thread Daniel Chacon
Not sure about SQLite, but "order" is a reserved word for SQL, maybe that is the issue maybe try "orders" instead. On Tue, Apr 16, 2013 at 10:17 PM, shoaib khan wrote: > I am creating a table named order in the database order.db. > I am getting error during the execution of the function call >

Re: [android-developers] 4.2.2 won't show when creating a new project in eclipse

2013-04-30 Thread Daniel Chacon
Im sure its set, but did you make sure "USB debugging" is enabled on the phone? its under developer options( this is for the connecting to pc issue you listed) On Sun, Apr 28, 2013 at 3:16 PM, Kris Adams wrote: > I just updated so I can develop for 4.2.2 but when I create a new project, > only 4

Re: [android-developers] How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-04-30 Thread Daniel Chacon
I will try and post the code later tonight or tomorrow to see if someone can point out what ive done wrong.. On Mon, Apr 29, 2013 at 8:14 PM, TreKing wrote: > > On Mon, Apr 29, 2013 at 9:35 AM, Dan Cha wrote: > >> when i swipe the screen up or down, it only moves while i have my finger >> on t

Re: [android-developers] Looking for API to gain access to my email

2013-04-23 Thread Daniel Chacon
> >> On Mon, Apr 22, 2013 at 5:49 PM, Kristopher Micinski > > wrote: >> >>> I don't know of any app which provides extensible functionality. >>> Instead, you need to find some API which talks to your email via >>> network to handle this.. >>&g

Re: [android-developers] Looking for API to gain access to my email

2013-04-23 Thread Daniel Chacon
o find some API which talks to your email via > network to handle this.. > > Kris > > On Mon, Apr 22, 2013 at 2:54 PM, Daniel Chacon wrote: > > I have the Galaxy Nexus running 4.2.2 > > > > > > On Fri, Apr 19, 2013 at 10:49 PM, Dan Cha wrote: > >> >

Re: [android-developers] Looking for API to gain access to my email

2013-04-22 Thread Daniel Chacon
I have the Galaxy Nexus running 4.2.2 On Fri, Apr 19, 2013 at 10:49 PM, Dan Cha wrote: > Im trying to build an app that can connect to my email client on my phone. > Im using the email client that came with the phone, so whatever that is. > > Is it possible to access that from another app? > >