Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class AboutActivity extends AppCompatActivity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_about);
- findViewById(R.id.btnBack).setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- finish();
- }
- });
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment