Back to project page sdl_tester_android.
The source code is released under:
Copyright (c) 2014, Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project sdl_tester_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.livio.sdl.dialogs; // ww w . j a v a2 s.c o m import android.app.ProgressDialog; import android.content.Context; public class IndeterminateProgressDialog extends ProgressDialog{ public IndeterminateProgressDialog(Context context, String title) { super(context); setCancelable(false); setMessage(title); setIndeterminate(true); setTitle(null); } }