|
|
@ -51,6 +51,16 @@ public class CheckInActivity extends AppCompatActivity { |
|
|
|
LayoutInflater inflater = LayoutInflater.from(getApplicationContext()); |
|
|
|
view = inflater.inflate(R.layout.layout, null); |
|
|
|
|
|
|
|
TextView popup_log_out = view.findViewById(R.id.popup_log_out); |
|
|
|
|
|
|
|
popup_log_out.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(View view) { |
|
|
|
Intent intent = new Intent(CheckInActivity.this, LoginActivity.class); |
|
|
|
startActivity(intent); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
/*Button btn_confirm = view.findViewById(R.id.btn_confirm); |
|
|
|
Button btn_cancel = view.findViewById(R.id.btn_cancel); |
|
|
|
TextView txt_title = view.findViewById(R.id.txt_title); |
|
|
|