Advertisement
minafaw3

showAlertwithcutomview

Nov 27th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. private void showAlertwithcutomview(String passed_msg) {
  2. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  3. LayoutInflater inflater = this.getLayoutInflater();
  4.  
  5. final View dialogview = inflater.inflate(R.layout.alertdialog_error, null);
  6. builder.setView(dialogview);
  7.  
  8. TextView msg = (TextView) dialogview.findViewById(R.id.message);
  9. if (passed_msg != null) {
  10. msg.setText(passed_msg);
  11. }
  12.  
  13. Button back = (Button) findViewById(R.id.back_button);
  14. back.setOnClickListener(new View.OnClickListener() {
  15. @Override
  16. public void onClick(View v) {
  17. finish();
  18. }
  19. });
  20. finish();
  21. AlertDialog alertDialog = builder.create();
  22. alertDialog.show();
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement