ลองเขียนเป็น class ดูคับ แล้วใช้วิธี overload constructor method เอาคับ เช่น
Code (Android-Java)
class SetProfile {
//overload constructor method
public void SetProfile(String name, String gender) {
// Set value
}
//overload constructor method
public void SetProfile(String name) {
// Set value
}
} // end class