Skip to content

Commit

Permalink
feat: HideBottomTabTitle
Browse files Browse the repository at this point in the history
Closes #1253
  • Loading branch information
HdShare committed Dec 11, 2024
1 parent 40796fb commit f584caf
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions app/src/main/java/me/hd/hook/HideBottomTabTitle.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* QAuxiliary - An Xposed module for QQ/TIM
* Copyright (C) 2019-2024 QAuxiliary developers
* https://github.com/cinit/QAuxiliary
*
* This software is an opensource software: you can redistribute it
* and/or modify it under the terms of the General Public License
* as published by the Free Software Foundation; either
* version 3 of the License, or any later version as published
* by QAuxiliary contributors.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the General Public License for more details.
*
* You should have received a copy of the General Public License
* along with this software.
* If not, see
* <https://github.com/cinit/QAuxiliary/blob/master/LICENSE.md>.
*/

package me.hd.hook

import android.view.ViewGroup
import android.widget.TextView
import cc.ioctl.util.hookAfterIfEnabled
import com.github.kyuubiran.ezxhelper.utils.findViewByCondition
import com.github.kyuubiran.ezxhelper.utils.setViewZeroSize
import io.github.qauxv.base.annotation.FunctionHookEntry
import io.github.qauxv.base.annotation.UiItemAgentEntry
import io.github.qauxv.dsl.FunctionEntryRouter
import io.github.qauxv.hook.CommonSwitchFunctionHook
import io.github.qauxv.util.QQVersion
import io.github.qauxv.util.requireMinQQVersion
import xyz.nextalone.util.method

@FunctionHookEntry
@UiItemAgentEntry
object HideBottomTabTitle : CommonSwitchFunctionHook() {

override val name = "隐藏底栏标题"
override val uiItemLocation = FunctionEntryRouter.Locations.Simplify.UI_MISC
override val isAvailable = requireMinQQVersion(QQVersion.QQ_8_9_88)

override fun initOnce(): Boolean {
val generateTabItemMethod = if (requireMinQQVersion(QQVersion.QQ_9_0_30)) {
"Lcom/tencent/mobileqq/activity/home/impl/TabFrameControllerImpl;->generateTabItem(IIIIILjava/lang/String;IIIILjava/lang/String;Ljava/lang/String;)Landroid/view/View;"
} else {
"Lcom/tencent/mobileqq/activity/home/impl/TabFrameControllerImpl;->generateTabItem(IIIIIIIIILjava/lang/String;Ljava/lang/String;)Landroid/view/View;"
}.method
hookAfterIfEnabled(generateTabItemMethod) { param ->
val view = param.result as ViewGroup
view.findViewByCondition {
it is TextView
}?.apply {
setViewZeroSize()
}
}
return true
}
}

0 comments on commit f584caf

Please sign in to comment.