介紹 幾乎在所有平臺上都有很多進程運行背景,它們被稱為服務。可能在Android平臺中有一些服務可以執行長時間運行的操作,這些操作在處理時不需要用戶交互。 在本文中,藉助預定義的Android警報服務,我們將創建一個應用程式,在所需的時間間隔內將電話模式更改為振動模式。除此之外,我們將編寫自己的Se ...
介紹
幾乎在所有平臺上都有很多進程運行背景,它們被稱為服務。可能在Android平臺中有一些服務可以執行長時間運行的操作,這些操作在處理時不需要用戶交互。
在本文中,藉助預定義的Android警報服務,我們將創建一個應用程式,在所需的時間間隔內將電話模式更改為振動模式。除此之外,我們將編寫自己的Service類併在特定時間調用它。此外,此演示應用程式將回答以下問題:
- 如何使用Alarm Manager?
- 如何通過Alarm Manager啟動Intent?
- 如何使用BroadcastReceiver?
- 如何使用服務?
- 如何在AndroidManifest.xml中註冊服務和接收器?
- 如何更改手機鈴聲模式?
背景
要理解本文,讀者應該瞭解Java和Android平臺。
使用代碼
在開始編碼之前,應用程式的結構應該在編碼器的腦海中清楚。對於此演示應用程式,我們可以按照以下簡單步驟操作:
- 獲取用戶的時間間隔
MainActivity
- 根據時間間隔,設置鬧鐘以廣播它
- 寫入
BroadcastReceivers
以接收警報並執行操作或呼叫服務。
在這個演示中,有4個類:
隱藏 複製代碼MainActivity // main calss
FromHourAlarmReceiver //BroadcastReceiver
ToHourAlarmReceiver //BroadcastReceiver
MyService //Service Class
1-在MainActivity中獲取用戶的時間間隔
a)MainActivity.class
public class MainActivity extends Activity {
private EditText editText1; //create the objects
private EditText editText2;
private Button btn1;
private int hourFrom;
private int hourTo;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText1 = (EditText) findViewById(R.id.editText1); //bind the object
editText2 = (EditText) findViewById(R.id.editText2);
btn1 = (Button) findViewById(R.id.btn1);
btn1.setOnClickListener(new OnClickListener() { //click listener for btn
@Override
public void onClick(View v) {
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
b)main_activity.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter The Desired Time Interval For To Changed In Vibrate Mode" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="From (24 Hour Format)" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:numeric="integer"
/>
<TextView