更新源码识别命名

This commit is contained in:
ZhanGSKen
2025-10-22 18:26:54 +08:00
parent 4108371c20
commit ca4e4c7feb
6 changed files with 7 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Wed Oct 22 17:45:14 HKT 2025 #Wed Oct 22 10:25:50 GMT 2025
stageCount=16 stageCount=16
libraryProject= libraryProject=
baseVersion=15.4 baseVersion=15.4
publishVersion=15.4.15 publishVersion=15.4.15
buildCount=0 buildCount=1
baseBetaVersion=15.4.16 baseBetaVersion=15.4.16

View File

@@ -159,7 +159,7 @@ public class MainActivity extends WinBoLLActivity {
if (menuItemId == R.id.action_about) { if (menuItemId == R.id.action_about) {
Intent intent = new Intent(this, AboutActivity.class); Intent intent = new Intent(this, AboutActivity.class);
startActivity(intent); startActivity(intent);
} else if (menuItemId == R.id.action_battery_reporter) { } else if (menuItemId == R.id.action_battery_report) {
Intent intent = new Intent(); Intent intent = new Intent();
intent.setClass(this, BatteryReportActivity.class); intent.setClass(this, BatteryReportActivity.class);
startActivity(intent); startActivity(intent);

View File

@@ -59,7 +59,7 @@ public class BatteryReportActivity extends Activity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.activity_batteryreport); setContentView(R.layout.activity_battery_report);
// 初始化包管理工具(仅一次,供后续查询名称使用) // 初始化包管理工具(仅一次,供后续查询名称使用)
mPackageManager = getPackageManager(); mPackageManager = getPackageManager();

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"> <menu xmlns:android="http://schemas.android.com/apk/res/android">
<item <item
android:id="@+id/action_battery_reporter" android:id="@+id/action_battery_report"
android:title="@string/item_battery_reporter"/> android:title="@string/item_battery_report"/>
<item <item
android:id="@+id/action_clearrecord" android:id="@+id/action_clearrecord"
android:title="@string/item_clearrecord"/> android:title="@string/item_clearrecord"/>

View File

@@ -6,7 +6,7 @@
<string name="about_crashed">This application has crashed, the author level is limited, please understand!</string> <string name="about_crashed">This application has crashed, the author level is limited, please understand!</string>
<string name="item_mainview">Main View</string> <string name="item_mainview">Main View</string>
<string name="item_aboutview">About</string> <string name="item_aboutview">About</string>
<string name="item_battery_reporter">Battery Reporter</string> <string name="item_battery_report">Battery Report</string>
<string name="item_clearrecord">Clear Record</string> <string name="item_clearrecord">Clear Record</string>
<string name="item_changepicture">Change Picture</string> <string name="item_changepicture">Change Picture</string>
<string name="item_devoloperoptionsview">Developer View</string> <string name="item_devoloperoptionsview">Developer View</string>