What's wrong with the Thread?
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Thread thread = new Thread(){ public void run() { try { sleep(50); Toast toast = Toast.makeText(getApplicationContext(), "Logged In", 100); toast.show(); } catch (In...