Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created September 19, 2017 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/b8e296658ff24f22448aefffbc2058c8 to your computer and use it in GitHub Desktop.
Save ssaurel/b8e296658ff24f22448aefffbc2058c8 to your computer and use it in GitHub Desktop.
Main Activity for the System Keyboard Tutorial on the SSaurel's Channel
package com.ssaurel.mykeyboard;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment