diff --git a/android/brave_java_resources.gni b/android/brave_java_resources.gni
index 568b0ee35fb..7a6acc1c4eb 100644
--- a/android/brave_java_resources.gni
+++ b/android/brave_java_resources.gni
@@ -531,7 +531,6 @@ brave_java_resources = [
"java/res/drawable/ic_hearts.xml",
"java/res/drawable/ic_help.xml",
"java/res/drawable/ic_help_filled.xml",
- "java/res/drawable/ic_help_outline.xml",
"java/res/drawable/ic_home_screen_widget.xml",
"java/res/drawable/ic_homepage.xml",
"java/res/drawable/ic_info.xml",
diff --git a/android/java/org/chromium/chrome/browser/rewards/BraveRewardsPanel.java b/android/java/org/chromium/chrome/browser/rewards/BraveRewardsPanel.java
index 2ad3cb317ec..36e68091d7d 100644
--- a/android/java/org/chromium/chrome/browser/rewards/BraveRewardsPanel.java
+++ b/android/java/org/chromium/chrome/browser/rewards/BraveRewardsPanel.java
@@ -219,7 +219,6 @@ public class BraveRewardsPanel
private View mWalletBalanceProgress;
private View mBalanceDataViewGroups;
private View mEstimatedToolTip;
- private View mVbatUserdrainToolTip;
private PopupWindowTippingTabletUI mPopupWindowTippingTabletUI;
private boolean mIsTablet;
@@ -250,12 +249,6 @@ public class BraveRewardsPanel
&& !isWithinViewBounds((int) event.getRawX(), (int) event.getRawY())) {
estimatedTooltipGroup.setVisibility(View.GONE);
}
- View vbatUserdrainTooltipGroup =
- mPopupView.findViewById(R.id.vbat_userdrain_tooltip_group);
- if (mVbatUserdrainToolTip != null && mVbatUserdrainToolTip.isShown()
- && !isWithinViewBounds((int) event.getRawX(), (int) event.getRawY())) {
- vbatUserdrainTooltipGroup.setVisibility(View.GONE);
- }
if (event.getAction() == MotionEvent.ACTION_OUTSIDE) {
dismiss();
return true;
@@ -380,9 +373,6 @@ public class BraveRewardsPanel
mEstimatedToolTip = mPopupView.findViewById(R.id.estimated_earnings_tooltip);
maybeShowEstimatedToolTip();
- mVbatUserdrainToolTip = mPopupView.findViewById(R.id.vbat_userdrain_tooltip);
- maybeShowVbatUserdrainToolTip();
-
TextView loggedOutStateText = mPopupView.findViewById(R.id.logged_out_state_text);
if (mExternalWallet != null) {
loggedOutStateText.setText(String.format(
@@ -469,14 +459,6 @@ public class BraveRewardsPanel
v -> { estimatedTooltipGroup.setVisibility(View.VISIBLE); });
}
- @SuppressLint("ClickableViewAccessibility")
- private void maybeShowVbatUserdrainToolTip() {
- View vBatUserdrainHelpImg = mPopupView.findViewById(R.id.vbat_userdrain_help_img);
- View vBatUserdrainTooltipGroup = mPopupView.findViewById(R.id.vbat_userdrain_tooltip_group);
- vBatUserdrainHelpImg.setOnClickListener(
- v -> { vBatUserdrainTooltipGroup.setVisibility(View.VISIBLE); });
- }
-
private void clickManageAds() {
View manageAds = mPopupView.findViewById(R.id.manage_ads_text);
manageAds.setOnClickListener(v -> {
@@ -1176,12 +1158,6 @@ public class BraveRewardsPanel
? View.GONE
: View.VISIBLE);
mWalletBalanceProgress.setVisibility(View.GONE);
- if (mBraveRewardsNativeWorker.isGrandfatheredUser() && mExternalWallet != null
- && mExternalWallet.getType().equals(BraveWalletProvider.ZEBPAY)
- && mExternalWallet.getStatus() == WalletStatus.CONNECTED) {
- mPopupView.findViewById(R.id.vbat_userdrain_help_img)
- .setVisibility(View.VISIBLE);
- }
if (mBraveRewardsNativeWorker != null) {
BraveRewardsBalance walletBalanceObject =
mBraveRewardsNativeWorker.GetWalletBalance();
diff --git a/android/java/res/drawable/ic_help_outline.xml b/android/java/res/drawable/ic_help_outline.xml
deleted file mode 100644
index c2aa1fce6c2..00000000000
--- a/android/java/res/drawable/ic_help_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/android/java/res/layout/wallet_balance_layout.xml b/android/java/res/layout/wallet_balance_layout.xml
index 5dd39da11d5..e0b612f2bba 100644
--- a/android/java/res/layout/wallet_balance_layout.xml
+++ b/android/java/res/layout/wallet_balance_layout.xml
@@ -244,55 +244,6 @@
app:layout_constraintBottom_toBottomOf="@id/bat_balance_text"
app:layout_constraintStart_toEndOf="@id/bat_balance_text" />
-
-
-
-
-
-
-
-
This reflects your estimated earnings range for Brave Ads this month.
-
- Now that you're connected to ZebPay, any previous balance you had will be deposited into your ZebPay account as part of your next earnings payout. Once it arrives, you'll see your BAT reflected in your Rewards balance.
-
Notifications are disabled