Logout button from popup

This commit is contained in:
Apalak Dutta 2023-05-18 19:45:12 +05:30
parent 2a202fd18f
commit 45ef99ccba
2 changed files with 11 additions and 0 deletions

View File

@ -51,6 +51,16 @@ public class CheckInActivity extends AppCompatActivity {
LayoutInflater inflater = LayoutInflater.from(getApplicationContext()); LayoutInflater inflater = LayoutInflater.from(getApplicationContext());
view = inflater.inflate(R.layout.layout, null); 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_confirm = view.findViewById(R.id.btn_confirm);
Button btn_cancel = view.findViewById(R.id.btn_cancel); Button btn_cancel = view.findViewById(R.id.btn_cancel);
TextView txt_title = view.findViewById(R.id.txt_title); TextView txt_title = view.findViewById(R.id.txt_title);

View File

@ -71,6 +71,7 @@
android:background="@drawable/back" /> android:background="@drawable/back" />
<TextView <TextView
android:id="@+id/popup_log_out"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Log out" android:text="Log out"