Created
February 21, 2016 12:46
-
-
Save kundansviet/1bb3bb78db5b6aa5c4eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.Intent; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
public class MainActivity extends AppCompatActivity { | |
EditText et_name, et_college, et_place, et_userid, et_number; | |
Button btn_next; | |
DbHelper dbHelper; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
dbHelper = DbHelper.getInstance(getApplicationContext()); | |
et_name = (EditText) findViewById(R.id.et_name); | |
et_college = (EditText) findViewById(R.id.et_college); | |
et_place = (EditText) findViewById(R.id.et_place); | |
et_userid = (EditText) findViewById(R.id.et_userid); | |
et_number = (EditText) findViewById(R.id.et_number); | |
btn_next = (Button) findViewById(R.id.btn_next); | |
btn_next.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
UserData userData = new UserData(); | |
if (!et_name.getText().toString().isEmpty()) { | |
userData.name = et_name.getText().toString(); | |
} else { | |
userData.name = ""; | |
} | |
if (!et_college.getText().toString().isEmpty()) { | |
userData.college = et_college.getText().toString(); | |
} else { | |
userData.college = ""; | |
} | |
if (!et_userid.getText().toString().isEmpty()) { | |
userData.user_id = et_userid.getText().toString(); | |
} else { | |
userData.user_id = ""; | |
} | |
if (!et_number.getText().toString().isEmpty()) { | |
userData.number = et_number.getText().toString(); | |
} else { | |
userData.number = ""; | |
} | |
if (!et_place.getText().toString().isEmpty()) { | |
userData.place = et_place.getText().toString(); | |
} else { | |
userData.place = ""; | |
} | |
dbHelper.insertUserDetail(userData); | |
Intent intent=new Intent(MainActivity.this,UserDetailList.class); | |
startActivity(intent); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment