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
final Button button6 = (Button) findViewById(R.id.btn_addRAddress); | |
button6.setOnClickListener(new View.OnClickListener() { | |
public void onClick(View v) | |
{ | |
Context mContext = v.getContext(); | |
final Dialog dialog = new Dialog(mContext); | |
dialog.setContentView(R.layout.add_address); | |
dialog.setTitle("Add Address"); |