My toast does not appear until the file completes the download (I commented on the download function). Any ideas why?
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ImageView main_image_view = (ImageView)this.findViewById(R.id.main_image_view); TextView text_view = (TextView)this.findViewById(R.id.main_text_view); Context context = getApplicationContext(); CharSequence text = "File Not Found. Downloading... Please be patient, it a large file!"; int duration = Toast.LENGTH_SHORT; Toast toast = Toast.makeText(context, text, duration); toast.show();
source share