Back to project page umbrella.alert.
The source code is released under:
GNU General Public License
If you think the Android project umbrella.alert 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 macbury.umbrella.fragments; /*from w ww.ja v a 2 s. c o m*/ import android.os.Bundle; import android.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.androidquery.AQuery; import macbury.umbrella.R; /** * A simple {@link Fragment} subclass. * */ public class LoadingFragment extends Fragment { private AQuery query; public LoadingFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return inflater.inflate(R.layout.fragment_loading, container, false); } @Override public void onResume() { query = new AQuery(this.getView()); super.onResume(); query.find(R.id.loading_progressbar).getProgressBar().setIndeterminate(true); } }