mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
精简:去除QQ交流群入口(今后以QQ频道为主)
This commit is contained in:
parent
5387202e36
commit
6eb2ca2b1b
@ -91,21 +91,6 @@ class AboutFragment : BaseFragment<FragmentAboutBinding?>(), SuperTextView.OnSup
|
||||
binding!!.btnGitee.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_project_gitee))
|
||||
}
|
||||
binding!!.btnAddQqGroup1.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_add_qq_group_1))
|
||||
}
|
||||
binding!!.btnAddQqGroup2.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_add_qq_group_2))
|
||||
}
|
||||
binding!!.btnAddQqGroup3.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_add_qq_group_3))
|
||||
}
|
||||
binding!!.btnAddQqGroup4.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_add_qq_group_4))
|
||||
}
|
||||
binding!!.btnAddQqGroup5.setOnClickListener {
|
||||
AgentWebActivity.goWeb(context, getString(R.string.url_add_qq_group_5))
|
||||
}
|
||||
|
||||
binding!!.menuWechatMiniprogram.setOnSuperTextViewClickListener(this)
|
||||
binding!!.menuDonation.setOnSuperTextViewClickListener(this)
|
||||
|
@ -1,278 +1,191 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout 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="?attr/xui_config_color_background"
|
||||
android:orientation="vertical"
|
||||
tools:ignore="Overdraw">
|
||||
|
||||
<androidx.core.widget.NestedScrollView style="@style/ScrollViewStyle">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="5dp">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:layout_width="280dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/logo"
|
||||
app:srcCompat="@drawable/ic_splash_app_logo" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_version"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:layout_marginTop="15dp"
|
||||
app:sLeftTextString="@string/about_app_version">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_update"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/check_update"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="3000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_cache"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
app:sLeftTextString="@string/about_cache_size">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_cache"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/clear_cache"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="1000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_frpc"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:visibility="gone"
|
||||
app:sLeftTextString="@string/about_frpc_version">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_frpc"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/delete_frpc"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="1000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_wechat_miniprogram"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_wechat_miniprogram" />
|
||||
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_wecom_group"
|
||||
style="@style/InfoItem.About"
|
||||
android:layout_marginTop="10dp"
|
||||
app:sLeftTextString="@string/about_item_add_wework_group" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_dingtalk_group"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_add_dingtalk_group" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_qq_channel"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_add_qq_channel" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
app:sLeftTextString="@string/about_item_add_qq_group">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_add_qq_group_1"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_add_qq_group_2"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_add_qq_group_1"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_add_qq_group_2"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_add_qq_group_3"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_add_qq_group_2"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_add_qq_group_3"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_add_qq_group_4"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_add_qq_group_3"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_add_qq_group_4"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_add_qq_group_5"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_add_qq_group_4"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_add_qq_group_5"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_add_qq_group_5"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:layout_marginTop="10dp"
|
||||
app:sLeftTextString="@string/about_item_open_source">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_github"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_gitee"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_github"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_gitee"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_gitee"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_donation"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_donation_link" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_user_protocol"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/title_user_protocol" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_privacy_protocol"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/title_privacy_protocol" />
|
||||
|
||||
<Space
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/copyright"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="25dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="@color/xui_config_color_gray_7" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout 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="?attr/xui_config_color_background"
|
||||
android:orientation="vertical"
|
||||
tools:ignore="Overdraw">
|
||||
|
||||
<androidx.core.widget.NestedScrollView style="@style/ScrollViewStyle">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="5dp">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:layout_width="280dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/logo"
|
||||
app:srcCompat="@drawable/ic_splash_app_logo" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_version"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:layout_marginTop="15dp"
|
||||
app:sLeftTextString="@string/about_app_version">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_update"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/check_update"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="3000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_cache"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
app:sLeftTextString="@string/about_cache_size">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_cache"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/clear_cache"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="1000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_frpc"
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:visibility="gone"
|
||||
app:sLeftTextString="@string/about_frpc_version">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_frpc"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/delete_frpc"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="1000"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_wechat_miniprogram"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_wechat_miniprogram" />
|
||||
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_wecom_group"
|
||||
style="@style/InfoItem.About"
|
||||
android:layout_marginTop="10dp"
|
||||
app:sLeftTextString="@string/about_item_add_wework_group" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_dingtalk_group"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_add_dingtalk_group" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_qq_channel"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_add_qq_channel" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
style="@style/InfoItem.AboutWithBtn"
|
||||
android:layout_marginTop="10dp"
|
||||
app:sLeftTextString="@string/about_item_open_source">
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_github"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/btn_gitee"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_github"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
<com.xuexiang.xui.widget.button.CountDownButton
|
||||
android:id="@+id/btn_gitee"
|
||||
style="@style/Button.Blue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_toStartOf="@id/sRightImgId"
|
||||
android:minWidth="30dp"
|
||||
android:minHeight="0dp"
|
||||
android:padding="5dp"
|
||||
android:text="@string/about_item_gitee"
|
||||
android:textSize="11sp"
|
||||
app:cdbt_countDown="500"
|
||||
app:cdbt_enableCountDown="true" />
|
||||
|
||||
</com.xuexiang.xui.widget.textview.supertextview.SuperTextView>
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_donation"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/about_item_donation_link" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_user_protocol"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/title_user_protocol" />
|
||||
|
||||
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||||
android:id="@+id/menu_privacy_protocol"
|
||||
style="@style/InfoItem.About"
|
||||
app:sLeftTextString="@string/title_privacy_protocol" />
|
||||
|
||||
<Space
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/copyright"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="25dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="@color/xui_config_color_gray_7" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
</LinearLayout>
|
@ -37,21 +37,10 @@
|
||||
<string name="about_item_add_dingtalk_group">DingTalk Group</string>
|
||||
<string name="about_item_add_wework_group">Wework Group</string>
|
||||
<string name="about_item_add_qq_channel">QQ Channel</string>
|
||||
<string name="about_item_add_qq_group">QQ Group</string>
|
||||
<string name="about_item_add_qq_group_1">①</string>
|
||||
<string name="about_item_add_qq_group_2">②</string>
|
||||
<string name="about_item_add_qq_group_3">③</string>
|
||||
<string name="about_item_add_qq_group_4">④</string>
|
||||
<string name="about_item_add_qq_group_5">⑤</string>
|
||||
<string name="url_project_github">https://github.com/pppscn/SmsForwarder</string>
|
||||
<string name="url_project_gitee">https://gitee.com/pp/SmsForwarder</string>
|
||||
<string name="url_help">https://gitee.com/pp/SmsForwarder/wikis/pages</string>
|
||||
<string name="url_donation_link">https://gitee.com/pp/SmsForwarder.wiki/raw/master/%E6%89%93%E8%B5%8F%E5%90%8D%E5%8D%95.md</string>
|
||||
<string name="url_add_qq_group_1">http://qm.qq.com/cgi-bin/qm/qr?k=Mj5m39bqy6eodOImrFLI19Tdeqvv-9zf</string>
|
||||
<string name="url_add_qq_group_2">http://qm.qq.com/cgi-bin/qm/qr?k=jPXy4YaUzA7Uo0yPPbZXdkb66NS1smU_</string>
|
||||
<string name="url_add_qq_group_3">https://qm.qq.com/cgi-bin/qm/qr?k=itGVH4lB-HLGyJGTfP_5rjyCQj6kgIBt</string>
|
||||
<string name="url_add_qq_group_4">https://qm.qq.com/cgi-bin/qm/qr?k=83fYtikg2ARpUECsgJv9CcWTKQB74REK</string>
|
||||
<string name="url_add_qq_group_5">https://qm.qq.com/cgi-bin/qm/qr?k=CcamLcA-QVN-KqCDjeMZqdTx8IGlJrVx</string>
|
||||
<string name="url_dingtalk_group">https://gitee.com/pp/SmsForwarder/raw/main/pic/dingtalk.png</string>
|
||||
<string name="url_wework_group">https://gitee.com/pp/SmsForwarder/raw/main/pic/qywechat.png</string>
|
||||
<string name="url_qq_channel">https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&appChannel=share&inviteCode=1W5aewP&appChannel=share&businessType=9&from=246610&biz=ka</string>
|
||||
|
@ -37,21 +37,10 @@
|
||||
<string name="about_item_add_dingtalk_group">钉钉客户群</string>
|
||||
<string name="about_item_add_wework_group">企业微信群</string>
|
||||
<string name="about_item_add_qq_channel">QQ频道</string>
|
||||
<string name="about_item_add_qq_group">QQ互助交流群</string>
|
||||
<string name="about_item_add_qq_group_1">①群</string>
|
||||
<string name="about_item_add_qq_group_2">②群</string>
|
||||
<string name="about_item_add_qq_group_3">③群</string>
|
||||
<string name="about_item_add_qq_group_4">④群</string>
|
||||
<string name="about_item_add_qq_group_5">⑤群</string>
|
||||
<string name="url_project_github">https://github.com/pppscn/SmsForwarder</string>
|
||||
<string name="url_project_gitee">https://gitee.com/pp/SmsForwarder</string>
|
||||
<string name="url_help">https://gitee.com/pp/SmsForwarder/wikis/pages</string>
|
||||
<string name="url_donation_link">https://gitee.com/pp/SmsForwarder.wiki/raw/master/%E6%89%93%E8%B5%8F%E5%90%8D%E5%8D%95.md</string>
|
||||
<string name="url_add_qq_group_1">http://qm.qq.com/cgi-bin/qm/qr?k=Mj5m39bqy6eodOImrFLI19Tdeqvv-9zf</string>
|
||||
<string name="url_add_qq_group_2">http://qm.qq.com/cgi-bin/qm/qr?k=jPXy4YaUzA7Uo0yPPbZXdkb66NS1smU_</string>
|
||||
<string name="url_add_qq_group_3">https://qm.qq.com/cgi-bin/qm/qr?k=itGVH4lB-HLGyJGTfP_5rjyCQj6kgIBt</string>
|
||||
<string name="url_add_qq_group_4">https://qm.qq.com/cgi-bin/qm/qr?k=83fYtikg2ARpUECsgJv9CcWTKQB74REK</string>
|
||||
<string name="url_add_qq_group_5">https://qm.qq.com/cgi-bin/qm/qr?k=CcamLcA-QVN-KqCDjeMZqdTx8IGlJrVx</string>
|
||||
<string name="url_dingtalk_group">https://gitee.com/pp/SmsForwarder/raw/main/pic/dingtalk.png</string>
|
||||
<string name="url_wework_group">https://gitee.com/pp/SmsForwarder/raw/main/pic/qywechat.png</string>
|
||||
<string name="url_qq_channel">https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&appChannel=share&inviteCode=1W5aewP&appChannel=share&businessType=9&from=246610&biz=ka</string>
|
||||
|
Loading…
x
Reference in New Issue
Block a user