build Bundle from Key value pair - Android Android OS

Android examples for Android OS:Bundle Key

Description

build Bundle from Key value pair

Demo Code


/*//from w  ww . java2 s.  c  om
 * Copyright (c) 2016 PocketHub
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import android.os.Bundle;

public class Main {
  public static final String USER_PIC = "USER_PIC";
  public static final String USER_URL = "USER_URL";
  private static final String USER_MAIL = "USER_MAIL";
  private static final String USER_NAME = "USER_NAME";

  public static Bundle buildBundle(String name, String mail, String avatar) {
    Bundle userData = new Bundle();

    userData.putString(USER_PIC, avatar);
    userData.putString(USER_MAIL, mail);
    userData.putString(USER_NAME, name);

    return userData;
  }

  public static Bundle buildBundle(String name, String mail, String avatar, String url) {
    Bundle userData = new Bundle();

    userData.putString(USER_PIC, avatar);
    userData.putString(USER_MAIL, mail);
    userData.putString(USER_NAME, name);

    if (url != null) {
      userData.putString( USER_URL, url);
    }

    return userData;
  }
}

Related Tutorials