• PowerManager使用实例1(下)


    文件2 layoutmain.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
            <Button
        android:id="@+id/Button0" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
        <Button
        android:id="@+id/Button1" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <Button
    android:id="@+id/Button2" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <Button
    android:id="@+id/Button3" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <Button
    android:id="@+id/Button4" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <Button
    android:id="@+id/Button5" 
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <Button
    android:id="@+id/Button6" 
    android:text="@string/sleep"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    <Button
    android:id="@+id/Button7" 
    android:text="@string/reboot"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    </LinearLayout>
    <Button
    android:id="@+id/Button8" 
    android:text="@string/userActivity"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    ></Button>
    </LinearLayout>
    文件3 valuesstrings.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <string name="hello">Hello World, MainActivity!</string>
        <string name="app_name">PowerMangerSample</string>
         <string name="acquire_PARTIAL">acquire PARTIAL_WAKE_LOCK</string>
         <string name="release_PARTIAL">release PARTIAL_WAKE_LOCK</string>
         <string name="acquire_SCREEN_DIM">acquire SCREEN_DIM_WAKE_LOCK</string>
         <string name="release_SCREEN_DIM">release SCREEN_DIM_WAKE_LOCK</string>
         <string name="acquire_SCREEN_BRIGHT">acquire SCREEN_BRIGHT_WAKE_LOCK</string>
         <string name="release_SCREEN_BRIGHT">release SCREEN_BRIGHT_WAKE_LOCK</string>
         <string name="acquire_FULL_WAKE_LOCK">acquire FULL_WAKE_LOCK_WAKE_LOCK</string>
         <string name="release_FULL_WAKE_LOCK">release FULL_WAKE_LOCK_WAKE_LOCK</string>
         <string name="combineFlag0">combine with ACQUIRE_CAUSES_WAKEUP</string>
         <string name="notCombineFlag0">not combine with ACQUIRE_CAUSES_WAKEUP</string>
         <string name="combineFlag1">combine with ON_AFTER_RELEASE</string>
         <string name="notCombineFlag1">not combine with ON_AFTER_RELEASE</string>
         <string name="sleep">go sleep</string>
         <string name="reboot">reboot</string>
         <string name="userActivity">userActivity</string>
    </resources>
    文件4 valuesids.xml:
    <resources>
        <item type="id" name="StateKey" />
        <item type="id" name="TextTurnOnKey" />
        <item type="id" name="TextTurnOffKey" />
    </resources>
    文件5 AndroidManifest.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.teleca.robin"
          android:versionCode="1"
          android:versionName="1.0">
        <application android:icon="@drawable/icon" android:label="@string/app_name">
            <activity android:name=".MainActivity"
                      android:label="@string/app_name">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
     
        </application>
        <uses-sdk android:minSdkVersion="8" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.DEVICE_POWER"/>
    <uses-permission android:name="android.permission.REBOOT"/>
    </manifest> 
  • 相关阅读:
    使用office制作图章公章
    Office英语学习好帮手
    office快速制作简历
    如何使用office2010插入屏幕截图
    office 2010 安装教程
    360wifi使用方法|360wifi使用教程
    在我的电脑里新加一个盘符来隐藏文件夹和文件和秘密
    必应词典3.2去广告备忘笔记(转摘于roustar31)
    ASProtect注册码使用教程|ASProtect SKE(加壳脱壳工具) 2.56 汉化注册版
    ISTool5.3.1汉化版使用教程
  • 原文地址:https://www.cnblogs.com/liyuzhao/p/3818175.html
Copyright © 2020-2023  润新知