Back to project page SciProApp-Android.
The source code is released under:
Apache License
If you think the Android project SciProApp-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.
/* * Copyright (c) 2011 Patrick Strang.// w ww . j a v a 2 s .co m * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package se.su.dsv.scipro.android.activity; import android.app.Activity; import android.app.ProgressDialog; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.ImageButton; import se.su.dsv.scipro.android.IHeaderOnClick; import se.su.dsv.scipro.android.R; import se.su.dsv.scipro.android.tasks.SetStatusAsyncTask; import se.su.dsv.scipro.android.utils.SciProUtils; /** * User: patrick * Date: 2011-05-23 * Time: 11:46 */ public class StatusCheckIn extends Activity implements IHeaderOnClick, SetStatusAsyncTask.StatusResponder { public static final String TAG = "StatusCheckIn"; private ProgressDialog checkinProgress; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_status_checkin); setUpViews(); } private void setUpViews() { ImageButton homeButton = (ImageButton) findViewById(R.id.header_home_btn); homeButton.setVisibility(View.VISIBLE); Button checkinButton = (Button) findViewById(R.id.checkin_button); checkinButton.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { CheckBox checkBox = (CheckBox) findViewById(R.id.checkin_checkbox); EditText checkinStatus = (EditText) findViewById(R.id.checkin_status_text); new SetStatusAsyncTask(StatusCheckIn.this, checkBox.isChecked(), checkinStatus.getText().toString()).execute(); } }); } public void onHeaderHomeClick(View v) { SciProUtils.openHomeActivity(this); } public void onHeaderMessagesClick(View v) { SciProUtils.openMessagesActivity(this); } public void checkingIn() { checkinProgress = ProgressDialog.show(this, "Setting status", "Setting current check-in status and status message."); } public void checkedIn(SetStatusAsyncTask.StatusResult result) { checkinProgress.dismiss(); finish(); } }