Widget Recent Post No.

header ads

How to open fragment from activity on button click || LearnCode With RK


 Step 1 java


java Code second= v.findViewById(R.id.second); second.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(getContext(),second_page.class); startActivity(intent); } });

Post a Comment

0 Comments