KeyHandler: Add customization options
Change-Id: I5f50f5d442342b2082bf47e11b1351e578fa0144
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (C) 2021 The LineageOS Project
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
package org.lineageos.settings.device
|
||||
|
||||
import android.R
|
||||
import android.preference.PreferenceActivity
|
||||
import android.os.Bundle
|
||||
|
||||
class ButtonSettingsActivity : PreferenceActivity() {
|
||||
public override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
fragmentManager.beginTransaction().replace(
|
||||
R.id.content,
|
||||
ButtonSettingsFragment()
|
||||
).commit()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user