Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // created a button and associated the same with a function called clickFunction
- // this program really worked.
- public class MainActivity extends AppCompatActivity {
- public void clickFunction(View view){
- Log.i("MD_Message", "This is message from Mukesh Dak");
- }
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- }
- }
Add Comment
Please, Sign In to add comment