android系统停,想实现软件关机功能

android系统下,想实现软件关机功能.android系统下,系统关机不方便。想实现软件关机功能. 请问这样的应用如

android系统下,想实现软件关机功能.
android系统下,系统关机不方便。

想实现软件关机功能. 请问这样的应用如何写?

软件关机应用图标显示在任务栏上.

[解决办法]
其实代码挺简单的,麻烦的是需要编译才能正常运行:

main.xml:

XML code
<?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" >    <Button android:id="@+id/btn_shutdown"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="@string/shutdown" /></LinearLayout>