質問

How do I trigger toast notification at application start time?

正しい解決策はありません

他のヒント

Add the toast into the onCreate Method:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Toast.makeText(this, "This is my Toast!", Toast.LENGTH_LONG).show();
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top