Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active May 7, 2024 04:38
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 codeforfun-jp/682a12ad6441aec57c6eb967f0de522b to your computer and use it in GitHub Desktop.
Save codeforfun-jp/682a12ad6441aec57c6eb967f0de522b to your computer and use it in GitHub Desktop.
Java Intro #6-3
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EdgeToEdge.enable(this);
setContentView(R.layout.activity_main);
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
return insets;
});
TextView textView = findViewById(R.id.textView);
textView.setText("こんにちは");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment