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

2013-05-28 Thread Dan Cha
So im trying to build an app for my sisters photography business. Currently 
she offers her clients a "Sessions" area on her site that the client can 
login to after they have their photos taken.
This login is available to them for 2week periods where they can review the 
photos and order what they want.
 
What i'd like to try to do is make an app that mimics that setup. So is it 
possible to create an app, that can login to the site, and display the 
gallery on the phone(as long as they have internet access) so they dont 
have to be on a pc?
 
If so, can any one point me to some good samples or tutorials on how to 
accomplish?
 
thanks/

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




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

2013-05-28 Thread TreKing
On Tue, May 28, 2013 at 9:25 AM, Dan Cha  wrote:

> What i'd like to try to do is make an app that mimics that setup. So is it
> possible to create an app, that can login to the site, and display the
> gallery on the phone(as long as they have internet access) so they dont
> have to be on a pc?
>

Yes, this is possible.


>  If so, can any one point me to some good samples or tutorials on how to
> accomplish?
>

You're question is extremely broad. There is not going to be one sample or
tutorial that does everything you've described. Break your project up into
discrete tasks (Gallery View, Login, etc) and search the internets for
those specific things.

Good luck.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




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

2013-05-28 Thread Michael Banzon
In my honest opinion: You should try and build a website that is more
phone/tablet friendly instead. If you Google "responsive html css" or
some combination you should be able to find enough resources to get
the project moving. Unless the users/clients of the photo business is
returning and often required to go through the review process I can't
really see why they would want to install a dedicated app on their
phone/tablet. Even if they are returning having a device friendly
website should be a big gain. If the site is build using "modern"
techniques it should simply be a matter changing the stylesheet.

That being said - it is very much possible to build an app that
require the user to login to view content delivered from a website and
let the user interact with that content in a user-specific manner. You
could watch the presentation from I/O of Google Volley
(http://www.youtube.com/watch?v=yhv8l9F44qo) for a quick recap on such
applications.

On Tue, May 28, 2013 at 4:25 PM, Dan Cha  wrote:
> So im trying to build an app for my sisters photography business. Currently
> she offers her clients a "Sessions" area on her site that the client can
> login to after they have their photos taken.
> This login is available to them for 2week periods where they can review the
> photos and order what they want.
>
> What i'd like to try to do is make an app that mimics that setup. So is it
> possible to create an app, that can login to the site, and display the
> gallery on the phone(as long as they have internet access) so they dont have
> to be on a pc?
>
> If so, can any one point me to some good samples or tutorials on how to
> accomplish?
>
> thanks/
>
> --
> --
> 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@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>



-- 
Michael Banzon
http://michaelbanzon.com/

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




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 honest opinion: You should try and build a website that is more
> phone/tablet friendly instead. If you Google "responsive html css" or
> some combination you should be able to find enough resources to get
> the project moving. Unless the users/clients of the photo business is
> returning and often required to go through the review process I can't
> really see why they would want to install a dedicated app on their
> phone/tablet. Even if they are returning having a device friendly
> website should be a big gain. If the site is build using "modern"
> techniques it should simply be a matter changing the stylesheet.
>
> That being said - it is very much possible to build an app that
> require the user to login to view content delivered from a website and
> let the user interact with that content in a user-specific manner. You
> could watch the presentation from I/O of Google Volley
> (http://www.youtube.com/watch?v=yhv8l9F44qo) for a quick recap on such
> applications.
>
> On Tue, May 28, 2013 at 4:25 PM, Dan Cha  wrote:
> > So im trying to build an app for my sisters photography business.
> Currently
> > she offers her clients a "Sessions" area on her site that the client can
> > login to after they have their photos taken.
> > This login is available to them for 2week periods where they can review
> the
> > photos and order what they want.
> >
> > What i'd like to try to do is make an app that mimics that setup. So is
> it
> > possible to create an app, that can login to the site, and display the
> > gallery on the phone(as long as they have internet access) so they dont
> have
> > to be on a pc?
> >
> > If so, can any one point me to some good samples or tutorials on how to
> > accomplish?
> >
> > thanks/
> >
> > --
> > --
> > 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@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> > http://groups.google.com/group/android-developers?hl=en
> > ---
> > You received this message because you are subscribed to the Google Groups
> > "Android Developers" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to android-developers+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/groups/opt_out.
> >
> >
>
>
>
> --
> Michael Banzon
> http://michaelbanzon.com/
>
> --
> --
> 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@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.