Android kotlin 点击App 调节系统音量

论坛 期权论坛 脚本     
匿名技术用户   2021-1-7 09:04   290   0
看效果图






1.入口
<application
    android:allowBackup="true"
    android:icon="@mipmap/timg"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/timg"
    android:supportsRtl="true"
    android:excludeFromRecents="true"
    android:theme="@android:style/Theme.Translucent.NoTitleBar">//设置透明背景

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

2.布局

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@null"
    tools:context=".MainActivity">

   <TextView
       android:id="@+id/text"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       app:layout_constraintStart_toStartOf="parent"
       app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>
3.界面
class MainActivity : Activity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        OnVolumeAddKey()
    }

    fun OnVolumeAddKey() {
        try {
            val keyCommand = "input keyevent " + KeyEvent.KEYCODE_VOLUME_UP
            val runtime = Runtime.getRuntime()
            val proc = runtime.exec(keyCommand)
        } catch (e: IOException) {
            e.printStackTrace()
        }
        text.postDelayed(Runnable {
            finish()
        }, 1000)
    }

    override fun onDestroy() {
        super.onDestroy()
        finish()
    }
}
分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:7942463
帖子:1588486
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP