reenadak

2018-12-10_Android message logging

Dec 10th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. // created a button and associated the same with a function called clickFunction
  2.  
  3. // this program really worked.
  4.  
  5. public class MainActivity extends AppCompatActivity {
  6.  
  7.     public void clickFunction(View view){
  8.       Log.i("MD_Message", "This is message from Mukesh Dak");
  9.     }
  10.  
  11.     @Override
  12.     protected void onCreate(Bundle savedInstanceState) {
  13.         super.onCreate(savedInstanceState);
  14.         setContentView(R.layout.activity_main);
  15.     }
  16. }
Add Comment
Please, Sign In to add comment