正确登录后,这是我使用的代码(取自您的 sdk zip 文件中的示例 Deezer 应用程序)
在您的活动中:
private RequestListener userRequestListenerHandler = new UserRequestHandler();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
....
searchUser();
}
public void searchUser(){
AsyncDeezerTask searchAsyncUser = new AsyncDeezerTaskWithDialog(this, deezerConnect, userRequestListenerHandler);
DeezerRequest request = new DeezerRequest("user/me");
searchAsyncUser.execute(request);
}
public void searchUserFinish(User user) {
// TODO Auto-generated method stub
String name = user.getFirstname();
Sring lastname = user.getLastname();
//... other user data
}
private class UserRequestHandler implements RequestListener{
@Override
public void onComplete(String response, Object arg1) {
// TODO Auto-generated method stub
try{
User user = new DeezerDataReader<User>(User.class).read(response);
searchUserFinish(user);
}catch (IllegalStateException e){
handleError(e);
e.printStackTrace();
}
}
@Override
public void onDeezerError(DeezerError e, Object arg1) {
// TODO Auto-generated method stub
handleError(e);
}
@Override
public void onIOException(IOException e, Object arg1) {
// TODO Auto-generated method stub
handleError(e);
}
@Override
public void onMalformedURLException(MalformedURLException e,
Object arg1) {
// TODO Auto-generated method stub
handleError(e);
}
@Override
public void onOAuthException(OAuthException e, Object arg1) {
// TODO Auto-generated method stub
handleError(e);
}
}
public void handleError(Error e){
Toast.maketext(this,e,Toast.Length_Short).show();
}
ASYNC DEEZER 任务
public class AsyncDeezerTaskWithDialog extends AsyncDeezerTask {
/** Progress dialog to show user that the request is beeing processed. */
private ProgressDialog progressDialog;
/**
* Simply creates an Deezer task with a dialog.
* @param context the context used to create the dialog into.
* @param deezerConnect the DeezerConnect object used to connect to Deezer web services.
* @param listener the request listener.
*/
public AsyncDeezerTaskWithDialog(Context context, DeezerConnect deezerConnect,
RequestListener listener ) {
super(deezerConnect, listener );
progressDialog = new ProgressDialog( context );
progressDialog.setCancelable( true );
progressDialog.setOnCancelListener( new OnCancelHandler() );
}//met
@Override
protected void onPreExecute() {
progressDialog.setMessage( "Contacting Deezer..." );
progressDialog.show();
super.onPreExecute();
}//met
@Override
public void onPostExecute( String s ) {
//http://stackoverflow.com/questions/2745061/java-lang-illegalargumentexception-view-not-attached-to-window-manager
try {
if( progressDialog.isShowing() ) {
progressDialog.dismiss();
}//if
} catch (IllegalArgumentException e) {
//can happen sometimes, and nothing to get against it
}//catch
super.onPostExecute( s );
}//met
@Override
protected void onCancelled() {
//http://stackoverflow.com/questions/2745061/java-lang-illegalargumentexception-view-not-attached-to-window-manager
try {
if ( progressDialog.isShowing() ) {
progressDialog.dismiss();
}//if
} catch (IllegalArgumentException e) {
//can happen sometimes, and nothing to get against it
}//catch
super.onCancelled();
}//met
private class OnCancelHandler implements OnCancelListener {
@Override
public void onCancel(DialogInterface dialog) {
cancel( true );
}//met
}//inner class
}//class
DEEZER 数据阅读器类
public class DeezerDataReader<T extends Object> {
/** Class to pass to the Gson parser to create POJOs. */
private Class<T> clazz = null;
/** Creates a reader.
* @param clazz class to pass to the Gson parser to create POJOs.
* */
public DeezerDataReader( Class<T> clazz ) {
if( clazz == null ){
throw new IllegalArgumentException( "Clazz can't be null." );
}//if
this.clazz = clazz;
}//cons
/**
* DAO method to read (deserialize) data from a json string.
* @param json the json string to deserialize.
* @return a list of typed data from Deezer. The list can't be null, but may be empty.
* @throws IllegalStateException if the parser encounters an error in json format.
*/
public T read( String json ) throws IllegalStateException {
Gson gson = new Gson();
JsonObject object = new JsonParser().parse(json).getAsJsonObject();
return gson.fromJson( object, clazz );
}//met
}//met