Skip to content

Instantly share code, notes, and snippets.

@Leonard02
Leonard02 / court counter Java
Created February 6, 2018 22:01
Court Counter by Leoanrd
package com.example.android.courtcounter;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.view.View;
public class MainActivity extends AppCompatActivity {
int scoreTeamA=0;
@Leonard02
Leonard02 / Just Java JAVA
Created February 6, 2018 21:59
JUST JAVA by Leonard
/**
* IMPORTANT: Make sure you are using the correct package name.
* This example uses the package name:
* package com.example.android.justjava
* If you get an error when copying this code into Android studio, update it to match teh package name found
* in the project's AndroidManifest.xml file.
**/
package com.example.android.justjava;
@Leonard02
Leonard02 / football JAVA
Created February 6, 2018 21:56
FOOTBALL APP by Leonard
package com.example.android.football;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import android.view.View;
import android.widget.Toast;
import com.example.android.football.R;
@Leonard02
Leonard02 / QUIZ APP JAVA
Created February 6, 2018 21:53
QUIZ APP LK
package com.example.android.quizapplk;
import android.support.v7.app.AppCompatActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.CheckBox;