Skip to content

Instantly share code, notes, and snippets.

@jddeep
Created June 23, 2019 06:48
Show Gist options
  • Save jddeep/12add92ef6e62a76c038d511c244631c to your computer and use it in GitHub Desktop.
Save jddeep/12add92ef6e62a76c038d511c244631c to your computer and use it in GitHub Desktop.
private LineChart graph;
private Thread thread;
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_memory_graph);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
graph = findViewById(R.id.mem_graph);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment