Skip to content

Commit

Permalink
新增 系统界面-状态栏-图标-双排移动信号图标-图标主题
Browse files Browse the repository at this point in the history
res from CustoMIUIzer by MonwF
  • Loading branch information
Sevtinge committed Nov 22, 2023
1 parent d56bf04 commit 6cd72b6
Show file tree
Hide file tree
Showing 139 changed files with 836 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public void init() {
String[] colorModeList = {"", "dark", "tint"};
// String[] iconStyles = {"", "thick", "theme"};
String selectedIconStyle = mPrefsMap.getString("system_ui_status_mobile_network_icon_style", ""); // 图标样式
int selectedIconTheme = mPrefsMap.getStringAsInt("system_ui_statusbar_iconmanage_mobile_network_icon_theme", 1); //图标主题

findAndHookMethod("com.android.systemui.SystemUIApplication", lpparam.classLoader, "onCreate", new MethodHook() {
private boolean isHooked = false;
Expand All @@ -47,10 +48,16 @@ protected void after(MethodHookParam param) throws Throwable {
for (int slot = 1; slot <= 2; slot++) {
for (int lvl = 0; lvl <= 5; lvl++) {
for (String colorMode : colorModeList) {
if (!selectedIconStyle.equals("theme") || !colorMode.equals("tint")) {
String dualIconResName = "statusbar_signal_" + slot + "_" + lvl + (!colorMode.equals("") ? ("_" + colorMode) : "") + (!selectedIconStyle.equals("") ? ("_" + selectedIconStyle) : "");
if (selectedIconTheme == 1) {
String dualIconResName = "statusbar_signal_classic_" + slot + "_" + lvl + (!colorMode.equals("") ? ("_" + colorMode) : "");
int iconResId = modRes.getIdentifier(dualIconResName, "drawable", Helpers.mAppModulePkg);
dualSignalResMap.put(dualIconResName, mResHook.addResource(dualIconResName, iconResId));
} else if (selectedIconTheme == 2) {
if (!selectedIconStyle.equals("theme") || !colorMode.equals("tint")) {
String dualIconResName = "statusbar_signal_oa_" + slot + "_" + lvl + (!colorMode.equals("") ? ("_" + colorMode) : "") + (!selectedIconStyle.equals("") ? ("_" + selectedIconStyle) : "");
int iconResId = modRes.getIdentifier(dualIconResName, "drawable", Helpers.mAppModulePkg);
dualSignalResMap.put(dualIconResName, mResHook.addResource(dualIconResName, iconResId));
}
}
}
}
Expand Down Expand Up @@ -161,8 +168,17 @@ protected void before(final MethodHookParam param) throws Throwable {
if (!selectedIconStyle.equals("")) {
iconStyle = "_" + selectedIconStyle;
}
String sim1IconId = "statusbar_signal_1_" + level1 + colorMode + iconStyle;
String sim2IconId = "statusbar_signal_2_" + subStrengthId + colorMode + iconStyle;
String sim1IconId;
String sim2IconId;
if (selectedIconTheme == 1) {
sim1IconId = "statusbar_signal_classic_1_" + level1 + colorMode;
sim2IconId = "statusbar_signal_classic_2_" + subStrengthId + colorMode;
} else if (selectedIconTheme == 2) {
sim1IconId = "statusbar_signal_oa_1_" + level1 + colorMode + iconStyle;
sim2IconId = "statusbar_signal_oa_2_" + subStrengthId + colorMode + iconStyle;
} else {
throw new RuntimeException("Cannot get selectedIconTheme.");
}
int sim1ResId = dualSignalResMap.get(sim1IconId);
int sim2ResId = dualSignalResMap.get(sim2IconId);
XposedHelpers.callMethod(mMobile, "setImageResource", sim1ResId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ public void initPrefs() {
mDockBackgroundBlurRadius = findPreference("prefs_key_home_dock_bg_radius");
int mBlurMode = Integer.parseInt(PrefsUtils.getSharedStringPrefs(getContext(), "prefs_key_home_dock_add_blur", "0"));
mDockBackgroundBlurEnable = findPreference("prefs_key_home_dock_add_blur");
setBlurMode(mBlurMode);
setCanBeVisible(mBlurMode);
mDockBackgroundBlurEnable.setOnPreferenceChangeListener(this);
}

@Override
public boolean onPreferenceChange(Preference preference, Object o) {
if (preference == mDockBackgroundBlurEnable) {
setBlurMode(Integer.parseInt((String) o));
setCanBeVisible(Integer.parseInt((String) o));
}
return true;
}

private void setBlurMode(int mode) {
private void setCanBeVisible(int mode) {
mDockBackgroundBlur.setVisible(mode == 2);
mDockBackgroundBlurRadius.setVisible(mode == 1);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
package com.sevtinge.hyperceiler.ui.fragment.systemui.statusbar;

import static com.sevtinge.hyperceiler.utils.devicesdk.SystemSDKKt.isAndroidVersion;

import android.view.View;

import com.sevtinge.hyperceiler.R;
import com.sevtinge.hyperceiler.ui.base.BaseSettingsActivity;
import com.sevtinge.hyperceiler.ui.fragment.base.SettingsPreferenceFragment;
import com.sevtinge.hyperceiler.utils.PrefsUtils;

import moralnorm.preference.ColorPickerPreference;
import moralnorm.preference.DropDownPreference;
import moralnorm.preference.Preference;
import moralnorm.preference.SeekBarPreferenceEx;

public class DoubleLineNetworkSettings extends SettingsPreferenceFragment implements Preference.OnPreferenceChangeListener {

public class DoubleLineNetworkSettings extends SettingsPreferenceFragment {
DropDownPreference mIconTheme;
DropDownPreference mIconStyle;
@Override
public int getContentResId() {
return R.xml.system_ui_status_bar_doubleline_network;
Expand All @@ -19,4 +30,25 @@ public View.OnClickListener addRestartListener() {
"com.android.systemui"
);
}

@Override
public void initPrefs() {
mIconTheme = findPreference("prefs_key_system_ui_statusbar_iconmanage_mobile_network_icon_theme");
mIconStyle = findPreference("prefs_key_system_ui_status_mobile_network_icon_style");

//setCanBeVisible(mBlurMode);
mIconTheme.setOnPreferenceChangeListener(this);
}

@Override
public boolean onPreferenceChange(Preference preference, Object o) {
if (preference == mIconTheme) {
setCanBeVisible(Integer.parseInt((String) o));
}
return true;
}

private void setCanBeVisible(int mode) {
mIconStyle.setVisible(mode == 2);
}
}
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_0.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_0_dark.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_0_tint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="#66000000" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="#66000000" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="#66000000" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="#66000000" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="#66000000" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/light_mode_icon_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_1_dark.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/dark_mode_icon_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_1_tint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="#ff000000" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="#66000000" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="#66000000" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="#66000000" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="#66000000" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/light_mode_icon_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/light_mode_icon_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/light_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_2_dark.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="@color/dark_mode_icon_color_single_tone" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="@color/dark_mode_icon_color_single_tone" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="@color/dark_mode_icon_transparent_color_single_tone" />
</vector>
21 changes: 21 additions & 0 deletions app/src/main/res/drawable/statusbar_signal_classic_1_2_tint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="60"
android:viewportHeight="56"
android:width="60dp"
android:height="56dp">
<path
android:pathData="M10.4 24H5.6C4.716 24 4 24.5594 4 25.25V32.75C4 33.4406 4.716 34 5.6 34H10.4C11.284 34 12 33.4406 12 32.75V25.25C12 24.5594 11.284 24 10.4 24Z"
android:fillColor="#ff000000" />
<path
android:pathData="M16.6 20H21.4C22.284 20 23 20.4475 23 21V33C23 33.5525 22.284 34 21.4 34H16.6C15.716 34 15 33.5525 15 33V21C15 20.4475 15.716 20 16.6 20Z"
android:fillColor="#ff000000" />
<path
android:pathData="M27.6 16H32.4C33.284 16 34 16.4027 34 16.9V33.1C34 33.5972 33.284 34 32.4 34H27.6C26.716 34 26 33.5972 26 33.1V16.9C26 16.4027 26.716 16 27.6 16Z"
android:fillColor="#66000000" />
<path
android:pathData="M38.6 12H43.4C44.284 12 45 12.3787 45 12.8462V33.1538C45 33.6213 44.284 34 43.4 34H38.6C37.716 34 37 33.6213 37 33.1538V12.8462C37 12.3787 37.716 12 38.6 12Z"
android:fillColor="#66000000" />
<path
android:pathData="M49.6 8H54.4C55.284 8 56 8.36359 56 8.8125V33.1875C56 33.6364 55.284 34 54.4 34H49.6C48.716 34 48 33.6364 48 33.1875V8.8125C48 8.36359 48.716 8 49.6 8Z"
android:fillColor="#66000000" />
</vector>
Loading

0 comments on commit 6cd72b6

Please sign in to comment.