This is certainly doable. From the Android AccountManager documentation:
Many servers support some notion of an authentication token, which can
be used to authenticate a request to the server without sending the
user's actual password. (Auth tokens are normally created with a
separate request which does include the user's credentials.)
AccountManager can generate auth tokens for applications, so the
application doesn't need to handle passwords directly. Auth tokens are
normally reusable and cached by AccountManager, but must be refreshed
periodically. It's the responsibility of applications to invalidate
auth tokens when they stop working so the AccountManager knows it
needs to regenerate them.
A bit of Googling also turns up a fairly detailed tutorial of how to do this:
http://blog.doityourselfandroid.com/2011/08/06/oauth-2-0-flow-android/
In addition, it is also discussed in one of the 2011 Google IO sessions which can be viewed online:
http://www.google.com/events/io/2011/sessions/best-practices-for-accessing-google-apis-on-android.html
The Google IO session is of course discussing Google APIs, but since your interested in OAuth2 what you learn there should be germane to your situation.