Google Nexus 7 Demonstration and official Presentation at Google I/O 2012
2012年6月30日星期六
Google I/O 2012 大會視頻 - What's New in Android Developers' Tools
本視頻介紹最新的 Android SDK Revision 20 的新功能.
2012年6月28日星期四
谷歌官方發佈 Android 4.1, Jelly Bean (果凍豆)
谷歌已在開發者博客(http://android-developers.blogspot.com/2012/06/introducing-android-41-jelly-bean.html)官方發佈 Android 4.1, Jelly Bean (果凍豆).
相關文件:
- Android 4.1 for Developers
- Android 4.1 APIs
相關文件:
- Android 4.1 for Developers
- Android 4.1 APIs
2012年6月7日星期四
使用通知生成器 (Notification.Builder) 創建通知 (Notification)
Android 3.0, API Level 11, 提供新的 android.app.Notification.Builder 類. 用於更容易創建通知(Notification).
實例:
因為這個例子創建的通知會產生震動, 因此需要修改 AndroidManifest.xml, 添加 "android.permission.VIBRATE" 許可.
實例:
package com.Android3NotificationBuilder;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Android3NotificationBuilderActivity extends Activity {
Button buttonCreateNotification;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
buttonCreateNotification = (Button)findViewById(R.id.createnotification);
buttonCreateNotification.setOnClickListener(
new Button.OnClickListener(){
@Override
public void onClick(View arg0) {
createNotification(getBaseContext());
}}
);
}
private void createNotification(Context context){
NotificationManager notificationManager
= (NotificationManager)context.getSystemService(
Context.NOTIFICATION_SERVICE);
Notification.Builder builder = new Notification.Builder(context);
Intent intent = new Intent(context, Android3NotificationBuilderActivity.class);
PendingIntent pendingIntent
= PendingIntent.getActivity(context, 0, intent, 0);
long[] vibratepattern = {100, 400, 500, 400};
builder
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("標題")
.setContentText("文字")
.setContentInfo("信息")
.setTicker("票")
.setLights(0xFFFFFFFF, 1000, 1000)
.setVibrate(vibratepattern)
.setContentIntent(pendingIntent)
.setAutoCancel(false);
Notification notification = builder.getNotification();
notificationManager.notify(R.drawable.ic_launcher, notification);
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/createnotification"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="創建通知(Notification)" />
</LinearLayout>
因為這個例子創建的通知會產生震動, 因此需要修改 AndroidManifest.xml, 添加 "android.permission.VIBRATE" 許可.
2012年6月5日星期二
振動器 (Vibrator)
我們可以使用 android.os.Vibrator 類控制 Android 設備上的振動器.
實例:
使用 android.os.Vibrator (振動器), 需要修改 AndroidManifest.xml 添加 "android.permission.VIBRATE" 權限.
- boolean hasVibrator(): 檢查硬件是否有震動器. (API Level 11)
- void vibrate(long milliseconds): 開啟振動器.
- void vibrate(long[] pattern, int repeat): 按模式振動.
- void cancel(): 取消振動.
實例:
package com.AndroidVibrator;
import android.app.Activity;
import android.os.Bundle;
import android.os.Vibrator;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class AndroidVibratorActivity extends Activity {
long[] vibratepattern = {100, 400, 500};
Vibrator vibrator;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
vibrator = (Vibrator)getSystemService(
AndroidVibratorActivity.VIBRATOR_SERVICE);
Button startVibrate = (Button)findViewById(R.id.startvibrate);
startVibrate.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View arg0) {
vibrator.vibrate(vibratepattern, 0);
}});
Button stopVibrate = (Button)findViewById(R.id.stopvibrate);
stopVibrate.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
vibrator.cancel();
}});
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/startvibrate"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start Vibrate" />
<Button
android:id="@+id/stopvibrate"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Stop Vibrate" />
</LinearLayout>
使用 android.os.Vibrator (振動器), 需要修改 AndroidManifest.xml 添加 "android.permission.VIBRATE" 權限.
訂閱:
留言 (Atom)


