mirror of
https://github.com/LittleTurtle2333/SimplicityTools.git
synced 2026-07-12 19:31:17 +08:00
新增下拉通知天气
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -61,7 +61,7 @@ class SystemUI : IXposedHookLoadPackage {
|
||||
RemoveLockScreenCamera().handleLoadPackage(lpparam)
|
||||
|
||||
//TODO:状态栏天气
|
||||
//NotificationWeather().handleLoadPackage(lpparam)
|
||||
NotificationWeather().handleLoadPackage(lpparam)
|
||||
//TODO:状态栏电流
|
||||
//StatusBarCurrent().handleLoadPackage(lpparam)
|
||||
}
|
||||
|
||||
@@ -1,14 +1,23 @@
|
||||
package com.lt2333.simplicitytools.hook.app.systemui
|
||||
|
||||
import android.database.Cursor
|
||||
import android.net.Uri
|
||||
import android.view.ViewGroup
|
||||
import android.widget.TextView
|
||||
import com.lt2333.simplicitytools.util.XSPUtils
|
||||
import de.robv.android.xposed.IXposedHookLoadPackage
|
||||
import de.robv.android.xposed.XC_MethodHook
|
||||
import de.robv.android.xposed.XposedHelpers
|
||||
import de.robv.android.xposed.callbacks.XC_LoadPackage
|
||||
import java.util.*
|
||||
|
||||
class NotificationWeather :IXposedHookLoadPackage {
|
||||
class NotificationWeather : IXposedHookLoadPackage {
|
||||
override fun handleLoadPackage(lpparam: XC_LoadPackage.LoadPackageParam) {
|
||||
|
||||
if (!XSPUtils.getBoolean("notification_weather", false)) return
|
||||
|
||||
var display_city = XSPUtils.getBoolean("notification_weather_city", false)
|
||||
|
||||
val classIfExists = XposedHelpers.findClassIfExists(
|
||||
"com.android.systemui.qs.MiuiNotificationHeaderView",
|
||||
lpparam.classLoader
|
||||
@@ -17,7 +26,6 @@ class NotificationWeather :IXposedHookLoadPackage {
|
||||
override fun afterHookedMethod(param: MethodHookParam) {
|
||||
val viewGroup = param.thisObject as ViewGroup
|
||||
|
||||
|
||||
val layout = XposedHelpers.findClass(
|
||||
"androidx.constraintlayout.widget.ConstraintLayout\$LayoutParams",
|
||||
lpparam.classLoader
|
||||
@@ -35,6 +43,7 @@ class NotificationWeather :IXposedHookLoadPackage {
|
||||
viewGroup.context.packageName
|
||||
)
|
||||
)
|
||||
|
||||
XposedHelpers.setObjectField(
|
||||
layout,
|
||||
"startToEnd",
|
||||
@@ -44,6 +53,7 @@ class NotificationWeather :IXposedHookLoadPackage {
|
||||
viewGroup.context.packageName
|
||||
)
|
||||
)
|
||||
|
||||
layout.marginStart = viewGroup.context.resources.getDimensionPixelSize(
|
||||
viewGroup.context.resources.getIdentifier(
|
||||
"notification_panel_time_date_space",
|
||||
@@ -52,16 +62,55 @@ class NotificationWeather :IXposedHookLoadPackage {
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
val textView = TextView(viewGroup.context).also {
|
||||
it.setTextAppearance(viewGroup.context.resources.getIdentifier("TextAppearance.QSControl.Date","style",viewGroup.context.packageName))
|
||||
it.text = "This is a TextView"
|
||||
it.setTextAppearance(
|
||||
viewGroup.context.resources.getIdentifier(
|
||||
"TextAppearance.QSControl.Date",
|
||||
"style",
|
||||
viewGroup.context.packageName
|
||||
)
|
||||
)
|
||||
it.layoutParams = layout
|
||||
}
|
||||
|
||||
viewGroup.addView(textView)
|
||||
|
||||
val query: Cursor? = viewGroup.context.contentResolver
|
||||
.query(Uri.parse("content://weather/weather"), null, null, null, null)
|
||||
var str = "未找到天气"
|
||||
|
||||
class T : TimerTask() {
|
||||
override fun run() {
|
||||
try {
|
||||
if (query != null) {
|
||||
if (query.moveToFirst()) {
|
||||
if (display_city) {
|
||||
str =
|
||||
query.getString(query.getColumnIndexOrThrow("city_name")) + " " +
|
||||
query.getString(query.getColumnIndexOrThrow("description")) + " " +
|
||||
query.getString(query.getColumnIndexOrThrow("temperature"))
|
||||
} else {
|
||||
str =
|
||||
query.getString(query.getColumnIndexOrThrow("description")) + " " +
|
||||
query.getString(query.getColumnIndexOrThrow("temperature"))
|
||||
}
|
||||
|
||||
}
|
||||
query.close()
|
||||
}
|
||||
textView.text = str
|
||||
} catch (e: Exception) {
|
||||
}
|
||||
}
|
||||
}
|
||||
//每小时刷新一次
|
||||
Timer().scheduleAtFixedRate(
|
||||
T(),
|
||||
0,
|
||||
3600000
|
||||
)
|
||||
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -118,4 +118,8 @@
|
||||
<string name="hide_wifi_activity_icon">隐藏 WIFI箭头 图标</string>
|
||||
<string name="hide_mobile_activity_icon">隐藏 移动箭头 图标</string>
|
||||
<string name="hide_mobile_type_icon">隐藏 移动类型 图标</string>
|
||||
<string name="notification_weather">显示天气-总开关</string>
|
||||
<string name="lock_screen">锁屏</string>
|
||||
<string name="notification_center">通知中心</string>
|
||||
<string name="notification_weather_city">显示城市</string>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user