Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
350cad21ab | ||
|
|
451f1c8af8 | ||
|
|
8ae6183901 | ||
|
|
7ca0a1db4d | ||
|
|
206f572369 | ||
|
|
602c9e2cf5 | ||
|
|
6dd87a30d3 | ||
|
|
a95b05dada | ||
|
|
10cc064f1f | ||
|
|
952c8261e9 |
@@ -0,0 +1,45 @@
|
|||||||
|
Claude Usage Widget Source-Available License
|
||||||
|
Copyright (c) 2026 Amir Khodak. All rights reserved.
|
||||||
|
|
||||||
|
This is NOT an OSI-approved open-source license. The source code is made
|
||||||
|
publicly viewable ("source-available"), but the rights granted are limited as
|
||||||
|
described below. Where this license is silent, all rights are reserved.
|
||||||
|
|
||||||
|
1. DEFINITIONS
|
||||||
|
"Software" means the Claude Usage Widget source code, assets, and
|
||||||
|
documentation in this repository. "You" means anyone other than the
|
||||||
|
copyright holder.
|
||||||
|
|
||||||
|
2. WHAT YOU MAY DO
|
||||||
|
a. View, read, and study the Software.
|
||||||
|
b. Clone or fork the repository for your own private, personal,
|
||||||
|
non-commercial use and experimentation.
|
||||||
|
c. Build the Software from source and run it on devices you personally own.
|
||||||
|
d. Submit contributions (pull requests) back to this repository; by doing so
|
||||||
|
you license your contribution to the copyright holder under these terms.
|
||||||
|
|
||||||
|
3. WHAT YOU MAY NOT DO (without the copyright holder's prior written permission)
|
||||||
|
a. Redistribute, publish, or make available the Software or any derivative
|
||||||
|
work — in source or binary/APK form — to any third party or app store
|
||||||
|
(including but not limited to Google Play, F-Droid, Amazon Appstore,
|
||||||
|
Gitea/GitHub releases, or any website).
|
||||||
|
b. Use the Software, in whole or in part, for any commercial purpose.
|
||||||
|
c. Sell, sublicense, rent, or offer the Software as a service.
|
||||||
|
d. Use the names, app identity ("Claude Usage Widget"), package identifier
|
||||||
|
("me.khodak.claudeusage"), logos, or signing keys of the original work.
|
||||||
|
e. Remove or alter this license or the copyright notice.
|
||||||
|
|
||||||
|
4. RESERVED RIGHTS
|
||||||
|
All publishing and distribution rights are reserved exclusively to the
|
||||||
|
copyright holder. Only the copyright holder may publish official builds.
|
||||||
|
|
||||||
|
5. TRADEMARK NOTE
|
||||||
|
"Claude" is a trademark of Anthropic. This is an unofficial, independent
|
||||||
|
utility and is not affiliated with or endorsed by Anthropic.
|
||||||
|
|
||||||
|
6. NO WARRANTY
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM,
|
||||||
|
DAMAGES, OR OTHER LIABILITY ARISING FROM THE SOFTWARE OR ITS USE.
|
||||||
|
|
||||||
|
To request permission for anything in section 3, contact the copyright holder.
|
||||||
@@ -23,6 +23,12 @@ Android home screen widget that shows your Claude Pro usage at a glance.
|
|||||||
- Responsive: works as 4×1 (compact) or 4×2 (full)
|
- Responsive: works as 4×1 (compact) or 4×2 (full)
|
||||||
- Auto-refreshes every 5 minutes in the background
|
- Auto-refreshes every 5 minutes in the background
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src="docs/screenshots/signin.png" width="240" alt="Sign in">
|
||||||
|
</p>
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
1. Download `claude-usage-widget.apk` from the [latest release](../../releases/latest)
|
1. Download `claude-usage-widget.apk` from the [latest release](../../releases/latest)
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ android {
|
|||||||
applicationId = "me.khodak.claudeusage"
|
applicationId = "me.khodak.claudeusage"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 20
|
versionCode = 22
|
||||||
versionName = "1.19"
|
versionName = "1.21"
|
||||||
}
|
}
|
||||||
|
|
||||||
val releaseStorePassword = signingCred("KEYSTORE_PASSWORD", "storePassword")
|
val releaseStorePassword = signingCred("KEYSTORE_PASSWORD", "storePassword")
|
||||||
|
|||||||
@@ -84,17 +84,26 @@ class ClaudeUsageWidget : AppWidgetProvider() {
|
|||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Full-size builder follows the user's chosen style; the compact (1-cell-tall) size
|
||||||
|
// always uses bars, since two rings don't fit that height.
|
||||||
|
val rings = prefs.getWidgetStyle() == PreferencesManager.STYLE_RINGS
|
||||||
|
fun buildFull() =
|
||||||
|
if (rings) buildRingViews(context, prefs, apiData)
|
||||||
|
else buildViews(context, prefs, apiData)
|
||||||
|
|
||||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
RemoteViews(mapOf(
|
RemoteViews(mapOf(
|
||||||
SizeF(50f, 50f) to attach(buildSmallViews(context, prefs, apiData)),
|
SizeF(50f, 50f) to attach(buildSmallViews(context, prefs, apiData)),
|
||||||
SizeF(50f, 120f) to attach(buildViews(context, prefs, apiData))
|
SizeF(50f, 120f) to attach(buildFull())
|
||||||
))
|
))
|
||||||
} else {
|
} else {
|
||||||
attach(buildViews(context, prefs, apiData))
|
attach(buildFull())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun buildSmallViews(context: Context, prefs: PreferencesManager, apiData: UsageData?): RemoteViews {
|
private fun buildSmallViews(context: Context, prefs: PreferencesManager, apiData: UsageData?): RemoteViews {
|
||||||
|
val SESSION_FILL = ThemeColors.sessionFill(context, prefs)
|
||||||
|
val WEEKLY_FILL = ThemeColors.weeklyFill(context, prefs)
|
||||||
val v = RemoteViews(context.packageName, R.layout.widget_layout_small)
|
val v = RemoteViews(context.packageName, R.layout.widget_layout_small)
|
||||||
applyPeak(v, showText = false)
|
applyPeak(v, showText = false)
|
||||||
if (!prefs.isLoggedIn()) {
|
if (!prefs.isLoggedIn()) {
|
||||||
@@ -167,6 +176,8 @@ class ClaudeUsageWidget : AppWidgetProvider() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun buildViews(context: Context, prefs: PreferencesManager, apiData: UsageData?): RemoteViews {
|
private fun buildViews(context: Context, prefs: PreferencesManager, apiData: UsageData?): RemoteViews {
|
||||||
|
val SESSION_FILL = ThemeColors.sessionFill(context, prefs)
|
||||||
|
val WEEKLY_FILL = ThemeColors.weeklyFill(context, prefs)
|
||||||
val v = RemoteViews(context.packageName, R.layout.widget_layout)
|
val v = RemoteViews(context.packageName, R.layout.widget_layout)
|
||||||
applyPeak(v, showText = true)
|
applyPeak(v, showText = true)
|
||||||
|
|
||||||
@@ -252,6 +263,82 @@ class ClaudeUsageWidget : AppWidgetProvider() {
|
|||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ring style of the full widget — same data/branching as [buildViews] but each metric is a
|
||||||
|
* circular [RingRenderer] gauge (percentage drawn in the center) instead of a bar.
|
||||||
|
*/
|
||||||
|
private fun buildRingViews(context: Context, prefs: PreferencesManager, apiData: UsageData?): RemoteViews {
|
||||||
|
val SESSION_FILL = ThemeColors.sessionFill(context, prefs)
|
||||||
|
val WEEKLY_FILL = ThemeColors.weeklyFill(context, prefs)
|
||||||
|
val v = RemoteViews(context.packageName, R.layout.widget_layout_rings)
|
||||||
|
applyPeak(v, showText = true)
|
||||||
|
|
||||||
|
if (!prefs.isLoggedIn()) {
|
||||||
|
v.setImageViewBitmap(R.id.ring_session, RingRenderer.render(0, null, SESSION_FILL, null, "—", "SESSION"))
|
||||||
|
v.setImageViewBitmap(R.id.ring_weekly, RingRenderer.render(0, null, WEEKLY_FILL, null, "—", "WEEKLY"))
|
||||||
|
v.setTextViewText(R.id.tv_session_label, "Not signed in")
|
||||||
|
v.setTextViewText(R.id.tv_weekly_label, "Open app to sign in")
|
||||||
|
v.setTextViewText(R.id.tv_status, "")
|
||||||
|
return v
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── 5-hour session ring ──────────────────────────────────────────
|
||||||
|
val hasUtilization = apiData != null && apiData.fiveHourUtilization >= 0f
|
||||||
|
val hasApiMessages = apiData != null && apiData.effectiveRemaining >= 0 && apiData.messagesLimit > 0
|
||||||
|
val sessionStart = prefs.getSessionStart()
|
||||||
|
when {
|
||||||
|
hasUtilization -> {
|
||||||
|
val pct = apiData!!.fiveHourUtilization.toInt()
|
||||||
|
v.setImageViewBitmap(R.id.ring_session, RingRenderer.render(pct, null, SESSION_FILL, null, "$pct%", "SESSION"))
|
||||||
|
v.setTextViewText(R.id.tv_session_label, formatReset(apiData.utilizationResetAtEpoch))
|
||||||
|
}
|
||||||
|
hasApiMessages -> {
|
||||||
|
val pct = apiData!!.progressPercent
|
||||||
|
v.setImageViewBitmap(R.id.ring_session, RingRenderer.render(pct, null, SESSION_FILL, null, "$pct%", "SESSION"))
|
||||||
|
v.setTextViewText(R.id.tv_session_label, formatReset(apiData.resetAtEpoch))
|
||||||
|
}
|
||||||
|
sessionStart > 0 -> {
|
||||||
|
v.setImageViewBitmap(R.id.ring_session, RingRenderer.render(0, null, SESSION_FILL, null, "·", "SESSION"))
|
||||||
|
v.setTextViewText(R.id.tv_session_label, "session active")
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
v.setImageViewBitmap(R.id.ring_session, RingRenderer.render(0, null, SESSION_FILL, null, "—", "SESSION"))
|
||||||
|
v.setTextViewText(R.id.tv_session_label, "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── 7-day weekly ring (with pace tick) ───────────────────────────
|
||||||
|
val hasWeekly = apiData != null && apiData.weeklyUtilization >= 0f
|
||||||
|
if (hasWeekly) {
|
||||||
|
val wPct = apiData!!.weeklyUtilization.toInt()
|
||||||
|
val pace = PaceCalc.compute(apiData.weeklyUtilization, apiData.weeklyResetAtEpoch, PaceCalc.WEEKLY_WINDOW_MS)
|
||||||
|
v.setImageViewBitmap(
|
||||||
|
R.id.ring_weekly,
|
||||||
|
RingRenderer.render(wPct, pace?.markerPct, WEEKLY_FILL, if (pace != null) MARKER_COLOR else null, "$wPct%", "WEEKLY")
|
||||||
|
)
|
||||||
|
v.setTextViewText(R.id.tv_weekly_label, formatResetDay(apiData.weeklyResetAtEpoch))
|
||||||
|
} else {
|
||||||
|
val weeklyDays = Integer.bitCount(prefs.getWeeklyMask())
|
||||||
|
v.setImageViewBitmap(R.id.ring_weekly, RingRenderer.render(0, null, WEEKLY_FILL, null, "${weeklyDays}d", "WEEKLY"))
|
||||||
|
v.setTextViewText(R.id.tv_weekly_label, "active this week")
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Footer ───────────────────────────────────────────────────────
|
||||||
|
val resetEpoch = apiData?.effectiveResetEpoch ?: -1L
|
||||||
|
val status = when {
|
||||||
|
isRefreshing -> "Refreshing…"
|
||||||
|
apiData?.isRateLimited == true -> "Rate limited · ${formatReset(resetEpoch)}"
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
val updatedMs = apiData?.lastUpdated ?: 0L
|
||||||
|
v.setTextViewText(R.id.tv_status,
|
||||||
|
if (status.isNotBlank()) status else if (updatedMs > 0) formatTime(updatedMs) else "")
|
||||||
|
v.setInt(R.id.btn_refresh, "setColorFilter",
|
||||||
|
if (isRefreshing) 0xFFCC785C.toInt() else 0xFF999999.toInt())
|
||||||
|
v.setFloat(R.id.btn_refresh, "setRotation", currentRotation)
|
||||||
|
return v
|
||||||
|
}
|
||||||
|
|
||||||
private const val SESSION_FILL = 0xFFCC785C.toInt()
|
private const val SESSION_FILL = 0xFFCC785C.toInt()
|
||||||
private const val WEEKLY_FILL = 0xFF7B8FCC.toInt()
|
private const val WEEKLY_FILL = 0xFF7B8FCC.toInt()
|
||||||
private const val MARKER_COLOR = 0xFFFFFFFF.toInt() // single-color pace marker (weekly only)
|
private const val MARKER_COLOR = 0xFFFFFFFF.toInt() // single-color pace marker (weekly only)
|
||||||
|
|||||||
@@ -75,6 +75,15 @@ class LoginActivity : AppCompatActivity() {
|
|||||||
databaseEnabled = false
|
databaseEnabled = false
|
||||||
javaScriptCanOpenWindowsAutomatically = false
|
javaScriptCanOpenWindowsAutomatically = false
|
||||||
setSupportMultipleWindows(false)
|
setSupportMultipleWindows(false)
|
||||||
|
// Hardening: this WebView holds the claude.ai session, so lock down every path a
|
||||||
|
// page could use to reach the device. None of these affect the login flow.
|
||||||
|
allowFileAccess = false
|
||||||
|
allowContentAccess = false
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
|
allowFileAccessFromFileURLs = false
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
|
allowUniversalAccessFromFileURLs = false
|
||||||
|
setGeolocationEnabled(false)
|
||||||
// Standard Android Chrome UA — less suspicious than desktop
|
// Standard Android Chrome UA — less suspicious than desktop
|
||||||
userAgentString = "Mozilla/5.0 (Linux; Android 13; Pixel 7) " +
|
userAgentString = "Mozilla/5.0 (Linux; Android 13; Pixel 7) " +
|
||||||
"AppleWebKit/537.36 (KHTML, like Gecko) " +
|
"AppleWebKit/537.36 (KHTML, like Gecko) " +
|
||||||
|
|||||||
@@ -30,6 +30,33 @@ class MainActivity : AppCompatActivity() {
|
|||||||
private val notifPermLauncher =
|
private val notifPermLauncher =
|
||||||
registerForActivityResult(ActivityResultContracts.RequestPermission()) { /* result handled silently */ }
|
registerForActivityResult(ActivityResultContracts.RequestPermission()) { /* result handled silently */ }
|
||||||
|
|
||||||
|
/** SAF: pick a destination file and write the current settings JSON to it. */
|
||||||
|
private val exportLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.CreateDocument("application/json")) { uri ->
|
||||||
|
if (uri == null) return@registerForActivityResult
|
||||||
|
try {
|
||||||
|
contentResolver.openOutputStream(uri)?.use { it.write(prefs.exportSettings().toByteArray()) }
|
||||||
|
toast("Settings exported")
|
||||||
|
} catch (_: Exception) { toast("Export failed") }
|
||||||
|
}
|
||||||
|
|
||||||
|
/** SAF: pick a backup file and apply it. */
|
||||||
|
private val importLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.OpenDocument()) { uri ->
|
||||||
|
if (uri == null) return@registerForActivityResult
|
||||||
|
try {
|
||||||
|
val json = contentResolver.openInputStream(uri)?.bufferedReader()?.use { it.readText() } ?: ""
|
||||||
|
if (prefs.importSettings(json)) {
|
||||||
|
toast("Settings restored")
|
||||||
|
// Reflect restored prefs immediately: re-sync switches and redraw any widgets.
|
||||||
|
binding.switchNotify.isChecked = prefs.isNotifyEnabled()
|
||||||
|
binding.switchRingStyle.isChecked = prefs.getWidgetStyle() == PreferencesManager.STYLE_RINGS
|
||||||
|
binding.switchMaterialYou.isChecked = prefs.isMaterialYou()
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
} else toast("Not a valid settings file")
|
||||||
|
} catch (_: Exception) { toast("Import failed") }
|
||||||
|
}
|
||||||
|
|
||||||
/** Live refresh loop that runs only while the app is in the foreground. */
|
/** Live refresh loop that runs only while the app is in the foreground. */
|
||||||
private var autoRefreshJob: Job? = null
|
private var autoRefreshJob: Job? = null
|
||||||
|
|
||||||
@@ -66,6 +93,9 @@ class MainActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setupNotificationSettings()
|
setupNotificationSettings()
|
||||||
|
setupWidgetStyleSetting()
|
||||||
|
setupMaterialYouSetting()
|
||||||
|
setupBackupRestore()
|
||||||
|
|
||||||
binding.btnDebug.setOnClickListener {
|
binding.btnDebug.setOnClickListener {
|
||||||
if (binding.tvDebugInfo.visibility == android.view.View.GONE) {
|
if (binding.tvDebugInfo.visibility == android.view.View.GONE) {
|
||||||
@@ -112,6 +142,37 @@ class MainActivity : AppCompatActivity() {
|
|||||||
if (prefs.isNotifyEnabled()) requestNotificationPermission()
|
if (prefs.isNotifyEnabled()) requestNotificationPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Bars ⇄ Rings switch for the home-screen widget; redraws any placed widgets immediately. */
|
||||||
|
private fun setupWidgetStyleSetting() {
|
||||||
|
binding.switchRingStyle.isChecked = prefs.getWidgetStyle() == PreferencesManager.STYLE_RINGS
|
||||||
|
binding.switchRingStyle.setOnCheckedChangeListener { _, checked ->
|
||||||
|
prefs.setWidgetStyle(if (checked) PreferencesManager.STYLE_RINGS else PreferencesManager.STYLE_BARS)
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Material You toggle — switches the bars/rings to wallpaper-derived accents (Android 12+). */
|
||||||
|
private fun setupMaterialYouSetting() {
|
||||||
|
binding.switchMaterialYou.isChecked = prefs.isMaterialYou()
|
||||||
|
binding.switchMaterialYou.setOnCheckedChangeListener { _, checked ->
|
||||||
|
prefs.setMaterialYou(checked)
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Export/Import settings via the Storage Access Framework (no extra permissions needed). */
|
||||||
|
private fun setupBackupRestore() {
|
||||||
|
binding.btnExportSettings.setOnClickListener {
|
||||||
|
exportLauncher.launch("claude-usage-settings.json")
|
||||||
|
}
|
||||||
|
binding.btnImportSettings.setOnClickListener {
|
||||||
|
importLauncher.launch(arrayOf("application/json", "text/*", "*/*"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun toast(msg: String) =
|
||||||
|
android.widget.Toast.makeText(this, msg, android.widget.Toast.LENGTH_SHORT).show()
|
||||||
|
|
||||||
private fun requestNotificationPermission() {
|
private fun requestNotificationPermission() {
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) return
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) return
|
||||||
if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS)
|
if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
|||||||
@@ -0,0 +1,310 @@
|
|||||||
|
package me.khodak.claudeusage
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Build
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.View
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.isActive
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import me.khodak.claudeusage.data.PreferencesManager
|
||||||
|
import me.khodak.claudeusage.data.UsageData
|
||||||
|
import me.khodak.claudeusage.databinding.ActivityMainBinding
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.*
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
|
private lateinit var binding: ActivityMainBinding
|
||||||
|
private lateinit var prefs: PreferencesManager
|
||||||
|
private lateinit var repo: UsageRepository
|
||||||
|
|
||||||
|
private val notifPermLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.RequestPermission()) { /* result handled silently */ }
|
||||||
|
|
||||||
|
/** SAF: pick a destination file and write the current settings JSON to it. */
|
||||||
|
private val exportLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.CreateDocument("application/json")) { uri ->
|
||||||
|
if (uri == null) return@registerForActivityResult
|
||||||
|
try {
|
||||||
|
contentResolver.openOutputStream(uri)?.use { it.write(prefs.exportSettings().toByteArray()) }
|
||||||
|
toast("Settings exported")
|
||||||
|
} catch (_: Exception) { toast("Export failed") }
|
||||||
|
}
|
||||||
|
|
||||||
|
/** SAF: pick a backup file and apply it. */
|
||||||
|
private val importLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.OpenDocument()) { uri ->
|
||||||
|
if (uri == null) return@registerForActivityResult
|
||||||
|
try {
|
||||||
|
val json = contentResolver.openInputStream(uri)?.bufferedReader()?.use { it.readText() } ?: ""
|
||||||
|
if (prefs.importSettings(json)) {
|
||||||
|
toast("Settings restored")
|
||||||
|
// Reflect restored prefs immediately: re-sync switches and redraw any widgets.
|
||||||
|
binding.switchNotify.isChecked = prefs.isNotifyEnabled()
|
||||||
|
binding.switchRingStyle.isChecked = prefs.getWidgetStyle() == PreferencesManager.STYLE_RINGS
|
||||||
|
binding.switchMaterialYou.isChecked = prefs.isMaterialYou()
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
} else toast("Not a valid settings file")
|
||||||
|
} catch (_: Exception) { toast("Import failed") }
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Live refresh loop that runs only while the app is in the foreground. */
|
||||||
|
private var autoRefreshJob: Job? = null
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
binding = ActivityMainBinding.inflate(layoutInflater)
|
||||||
|
setContentView(binding.root)
|
||||||
|
|
||||||
|
prefs = PreferencesManager(this)
|
||||||
|
repo = UsageRepository(prefs)
|
||||||
|
|
||||||
|
binding.btnLogin.setOnClickListener {
|
||||||
|
startActivity(Intent(this, LoginActivity::class.java))
|
||||||
|
}
|
||||||
|
|
||||||
|
// If already logged in, go straight to logged-in state without re-opening login
|
||||||
|
if (prefs.isLoggedIn()) {
|
||||||
|
updateUI(prefs.getUsageData())
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.btnLogout.setOnClickListener {
|
||||||
|
prefs.clearSession()
|
||||||
|
updateUI(null)
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.btnRefresh.setOnClickListener {
|
||||||
|
refreshUsage()
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.tvWidgetHint.setOnClickListener {
|
||||||
|
startActivity(Intent(Intent.ACTION_MAIN).apply {
|
||||||
|
addCategory(Intent.CATEGORY_HOME)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
setupNotificationSettings()
|
||||||
|
setupWidgetStyleSetting()
|
||||||
|
setupMaterialYouSetting()
|
||||||
|
setupBackupRestore()
|
||||||
|
|
||||||
|
binding.btnDebug.setOnClickListener {
|
||||||
|
if (binding.tvDebugInfo.visibility == android.view.View.GONE) {
|
||||||
|
binding.tvDebugInfo.text = repo.lastDebugInfo.ifBlank { "No debug info yet — tap Refresh first" }
|
||||||
|
binding.tvDebugInfo.visibility = android.view.View.VISIBLE
|
||||||
|
binding.btnDebug.text = "Hide API Debug"
|
||||||
|
} else {
|
||||||
|
binding.tvDebugInfo.visibility = android.view.View.GONE
|
||||||
|
binding.btnDebug.text = "Show API Debug"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResume() {
|
||||||
|
super.onResume()
|
||||||
|
updateUI(prefs.getUsageData()) // show cached instantly — never a blank screen
|
||||||
|
if (prefs.isLoggedIn()) startAutoRefresh()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPause() {
|
||||||
|
super.onPause()
|
||||||
|
autoRefreshJob?.cancel()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Refresh immediately on open, then every [REFRESH_INTERVAL_MS] while foregrounded. */
|
||||||
|
private fun startAutoRefresh() {
|
||||||
|
autoRefreshJob?.cancel()
|
||||||
|
autoRefreshJob = lifecycleScope.launch {
|
||||||
|
while (isActive) {
|
||||||
|
doRefresh(silent = true)
|
||||||
|
delay(REFRESH_INTERVAL_MS)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupNotificationSettings() {
|
||||||
|
binding.switchNotify.isChecked = prefs.isNotifyEnabled()
|
||||||
|
binding.switchNotify.setOnCheckedChangeListener { _, checked ->
|
||||||
|
prefs.setNotifyEnabled(checked)
|
||||||
|
if (checked) requestNotificationPermission()
|
||||||
|
}
|
||||||
|
// Alerts default on, so prompt for the runtime permission once on first launch
|
||||||
|
// (a user who never toggles the switch would otherwise never be asked).
|
||||||
|
if (prefs.isNotifyEnabled()) requestNotificationPermission()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Bars ⇄ Rings switch for the home-screen widget; redraws any placed widgets immediately. */
|
||||||
|
private fun setupWidgetStyleSetting() {
|
||||||
|
binding.switchRingStyle.isChecked = prefs.getWidgetStyle() == PreferencesManager.STYLE_RINGS
|
||||||
|
binding.switchRingStyle.setOnCheckedChangeListener { _, checked ->
|
||||||
|
prefs.setWidgetStyle(if (checked) PreferencesManager.STYLE_RINGS else PreferencesManager.STYLE_BARS)
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Material You toggle — redraws placed widgets so the new accent applies immediately. */
|
||||||
|
private fun setupMaterialYouSetting() {
|
||||||
|
binding.switchMaterialYou.isChecked = prefs.isMaterialYou()
|
||||||
|
binding.switchMaterialYou.setOnCheckedChangeListener { _, checked ->
|
||||||
|
prefs.setMaterialYou(checked)
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this)
|
||||||
|
updateUI(prefs.getUsageData()) // refresh the in-app bars too
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupBackupRestore() {
|
||||||
|
binding.btnExportSettings.setOnClickListener { exportLauncher.launch("claude-usage-settings.json") }
|
||||||
|
binding.btnImportSettings.setOnClickListener { importLauncher.launch(arrayOf("application/json", "text/plain", "*/*")) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun toast(msg: String) =
|
||||||
|
android.widget.Toast.makeText(this, msg, android.widget.Toast.LENGTH_SHORT).show()
|
||||||
|
|
||||||
|
private fun requestNotificationPermission() {
|
||||||
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) return
|
||||||
|
if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
!= PackageManager.PERMISSION_GRANTED
|
||||||
|
) {
|
||||||
|
notifPermLauncher.launch(Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Manual "Refresh Now" button — shows the spinner. */
|
||||||
|
private fun refreshUsage() {
|
||||||
|
lifecycleScope.launch { doRefresh(silent = false) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun doRefresh(silent: Boolean) {
|
||||||
|
if (!silent) {
|
||||||
|
binding.btnRefresh.isEnabled = false
|
||||||
|
binding.progressIndicator.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
val fresh = try {
|
||||||
|
repo.fetchUsage()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
if (e is kotlinx.coroutines.CancellationException) throw e
|
||||||
|
UsageData(errorMessage = "Network error")
|
||||||
|
}
|
||||||
|
// Preserve last-good data so a failed/partial fetch never blanks the UI or widget.
|
||||||
|
val merged = fresh.mergedWith(prefs.getUsageData())
|
||||||
|
prefs.saveUsageData(merged)
|
||||||
|
prefs.recordHistory(fresh)
|
||||||
|
// Note: alerts fire only from the background worker, not here — no point pinging you
|
||||||
|
// with a notification while you're already looking at the app.
|
||||||
|
updateUI(merged)
|
||||||
|
ClaudeUsageWidget.notifyDataChanged(this) // opening the app refreshes the widget too
|
||||||
|
if (binding.tvDebugInfo.visibility == View.VISIBLE) {
|
||||||
|
binding.tvDebugInfo.text = repo.lastDebugInfo
|
||||||
|
}
|
||||||
|
if (!silent) {
|
||||||
|
binding.btnRefresh.isEnabled = true
|
||||||
|
binding.progressIndicator.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateUI(data: UsageData?) {
|
||||||
|
val loggedIn = prefs.isLoggedIn()
|
||||||
|
|
||||||
|
binding.layoutLoggedOut.visibility = if (loggedIn) View.GONE else View.VISIBLE
|
||||||
|
binding.layoutLoggedIn.visibility = if (loggedIn) View.VISIBLE else View.GONE
|
||||||
|
|
||||||
|
if (!loggedIn || data == null) return
|
||||||
|
|
||||||
|
// ── Peak-hours row ───────────────────────────────────────────────────
|
||||||
|
val peak = PeakHours.state()
|
||||||
|
binding.imgPeak.setColorFilter(if (peak.active) PEAK_ON else PEAK_OFF)
|
||||||
|
binding.tvPeak.setTextColor(if (peak.active) PEAK_ON else 0xFFAAAAAA.toInt())
|
||||||
|
binding.tvPeak.text = if (peak.active)
|
||||||
|
"🔥 Peak hours — ${peak.endsInLabel} · ${peak.windowLabel}"
|
||||||
|
else
|
||||||
|
"Off-peak · ${peak.windowLabel}"
|
||||||
|
|
||||||
|
// ── Session (5-hour) bar — no pace marker ────────────────────────────
|
||||||
|
binding.barSession.setImageBitmap(
|
||||||
|
BarRenderer.render(data.progressPercent, null, SESSION_FILL, null)
|
||||||
|
)
|
||||||
|
|
||||||
|
// ── Weekly (7-day) bar — single-color pace marker ────────────────────
|
||||||
|
if (data.weeklyUtilization >= 0f) {
|
||||||
|
val wPct = data.weeklyUtilization.toInt()
|
||||||
|
val weeklyPace = PaceCalc.compute(data.weeklyUtilization, data.weeklyResetAtEpoch, PaceCalc.WEEKLY_WINDOW_MS)
|
||||||
|
binding.barWeekly.setImageBitmap(
|
||||||
|
BarRenderer.render(wPct, weeklyPace?.markerPct, WEEKLY_FILL, if (weeklyPace != null) MARKER_COLOR else null)
|
||||||
|
)
|
||||||
|
binding.tvWeeklyUsage.text = "$wPct% this week"
|
||||||
|
} else {
|
||||||
|
binding.barWeekly.setImageBitmap(BarRenderer.render(0, null, WEEKLY_FILL, null))
|
||||||
|
binding.tvWeeklyUsage.text = "—"
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pace text removed per design — bars carry the signal.
|
||||||
|
binding.tvSessionPace.visibility = View.GONE
|
||||||
|
binding.tvWeeklyPace.visibility = View.GONE
|
||||||
|
|
||||||
|
binding.tvUsage.text = when {
|
||||||
|
data.fiveHourUtilization >= 0f -> {
|
||||||
|
val pct = data.fiveHourUtilization.toInt()
|
||||||
|
"$pct% of limit used"
|
||||||
|
}
|
||||||
|
data.messagesLimit > 0 && data.effectiveUsed >= 0 ->
|
||||||
|
"${data.effectiveUsed} of ${data.messagesLimit} messages used"
|
||||||
|
data.effectiveRemaining >= 0 && data.messagesLimit > 0 ->
|
||||||
|
"${data.effectiveRemaining} of ${data.messagesLimit} remaining"
|
||||||
|
data.effectiveRemaining >= 0 ->
|
||||||
|
"${data.effectiveRemaining} messages remaining"
|
||||||
|
else -> "Usage data unavailable"
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.tvReset.text = formatReset(data.effectiveResetEpoch)
|
||||||
|
binding.tvWeeklyReset.text = formatResetDay(data.weeklyResetAtEpoch)
|
||||||
|
binding.tvUpdated.text = if (data.lastUpdated > 0)
|
||||||
|
"Last updated: ${SimpleDateFormat("h:mm a, MMM d", Locale.US).format(Date(data.lastUpdated))}"
|
||||||
|
else ""
|
||||||
|
|
||||||
|
binding.tvError.text = data.errorMessage
|
||||||
|
binding.tvError.visibility = if (data.errorMessage.isNotBlank()) View.VISIBLE else View.GONE
|
||||||
|
|
||||||
|
binding.historyChart.setData(prefs.getHistory())
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun formatReset(epochMs: Long): String {
|
||||||
|
if (epochMs <= 0) return ""
|
||||||
|
val now = System.currentTimeMillis()
|
||||||
|
if (epochMs <= now) return "Resets soon"
|
||||||
|
val diffH = TimeUnit.MILLISECONDS.toHours(epochMs - now)
|
||||||
|
val timeStr = SimpleDateFormat("h:mm a", Locale.US).format(Date(epochMs))
|
||||||
|
return when {
|
||||||
|
diffH < 24 -> "Resets at $timeStr"
|
||||||
|
diffH < 48 -> "Resets tomorrow $timeStr"
|
||||||
|
else -> "Resets ${SimpleDateFormat("EEE", Locale.US).format(Date(epochMs))} $timeStr"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Weekly reset shown with the weekday name ("Resets Friday 3:00 PM"), never "tomorrow". */
|
||||||
|
private fun formatResetDay(epochMs: Long): String {
|
||||||
|
if (epochMs <= 0) return ""
|
||||||
|
if (epochMs <= System.currentTimeMillis()) return "Resets soon"
|
||||||
|
val day = SimpleDateFormat("EEEE", Locale.US).format(Date(epochMs))
|
||||||
|
val date = SimpleDateFormat("MMM d", Locale.US).format(Date(epochMs))
|
||||||
|
val timeStr = SimpleDateFormat("h:mm a", Locale.US).format(Date(epochMs))
|
||||||
|
return "Resets $day, $date · $timeStr"
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private const val REFRESH_INTERVAL_MS = 30_000L // live refresh cadence while app is open
|
||||||
|
private const val SESSION_FILL = 0xFFCC785C.toInt()
|
||||||
|
private const val WEEKLY_FILL = 0xFF7B8FCC.toInt()
|
||||||
|
private const val MARKER_COLOR = 0xFFFFFFFF.toInt() // single-color weekly pace marker
|
||||||
|
private const val PEAK_ON = 0xFFCC785C.toInt()
|
||||||
|
private const val PEAK_OFF = 0xFF666666.toInt()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,8 +23,42 @@ import me.khodak.claudeusage.data.UsageData
|
|||||||
object Notifier {
|
object Notifier {
|
||||||
|
|
||||||
private const val CHANNEL_ID = "usage_alerts"
|
private const val CHANNEL_ID = "usage_alerts"
|
||||||
|
private const val AUTH_CHANNEL_ID = "session_alerts"
|
||||||
|
private const val AUTH_NOTIF_ID = 3000
|
||||||
private val LEVELS = intArrayOf(90, 100)
|
private val LEVELS = intArrayOf(90, 100)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fired once when the saved claude.ai session is cleared after repeated 401/403s — without
|
||||||
|
* this the widget would just silently go stale and the user would have to notice the dead
|
||||||
|
* data themselves. Tapping opens LoginActivity straight to the cookie re-paste flow. Posts on
|
||||||
|
* its own channel so it can be muted independently of usage alerts, and is not gated on the
|
||||||
|
* usage-alert toggle: a dead widget is a functional failure the user needs to know about.
|
||||||
|
*/
|
||||||
|
fun notifySessionExpired(context: Context) {
|
||||||
|
val mgr = NotificationManagerCompat.from(context)
|
||||||
|
if (!mgr.areNotificationsEnabled()) return
|
||||||
|
ensureAuthChannel(context)
|
||||||
|
val intent = Intent(context, LoginActivity::class.java)
|
||||||
|
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
||||||
|
val pi = PendingIntent.getActivity(
|
||||||
|
context, 1, intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
|
||||||
|
)
|
||||||
|
val notif = NotificationCompat.Builder(context, AUTH_CHANNEL_ID)
|
||||||
|
.setSmallIcon(R.drawable.ic_claude_burst)
|
||||||
|
.setContentTitle("Claude sign-in expired")
|
||||||
|
.setContentText("Tap to sign in again — the widget can't update until you do.")
|
||||||
|
.setPriority(NotificationCompat.PRIORITY_HIGH)
|
||||||
|
.setAutoCancel(true)
|
||||||
|
.setContentIntent(pi)
|
||||||
|
.build()
|
||||||
|
try {
|
||||||
|
mgr.notify(AUTH_NOTIF_ID, notif)
|
||||||
|
} catch (_: SecurityException) {
|
||||||
|
// Notifications revoked between the check and post — nothing to do.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun checkAndNotify(context: Context, prefs: PreferencesManager, data: UsageData) {
|
fun checkAndNotify(context: Context, prefs: PreferencesManager, data: UsageData) {
|
||||||
if (!prefs.isNotifyEnabled()) return
|
if (!prefs.isNotifyEnabled()) return
|
||||||
val mgr = NotificationManagerCompat.from(context)
|
val mgr = NotificationManagerCompat.from(context)
|
||||||
@@ -94,6 +128,17 @@ object Notifier {
|
|||||||
private fun notifId(metric: String, levelIndex: Int) =
|
private fun notifId(metric: String, levelIndex: Int) =
|
||||||
2000 + (if (metric == "weekly") 10 else 0) + levelIndex
|
2000 + (if (metric == "weekly") 10 else 0) + levelIndex
|
||||||
|
|
||||||
|
private fun ensureAuthChannel(context: Context) {
|
||||||
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return
|
||||||
|
val mgr = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
if (mgr.getNotificationChannel(AUTH_CHANNEL_ID) != null) return
|
||||||
|
mgr.createNotificationChannel(
|
||||||
|
NotificationChannel(
|
||||||
|
AUTH_CHANNEL_ID, "Sign-in alerts", NotificationManager.IMPORTANCE_HIGH
|
||||||
|
).apply { description = "Tells you when your claude.ai session expires and needs re-auth" }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
private fun ensureChannel(context: Context) {
|
private fun ensureChannel(context: Context) {
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return
|
||||||
val mgr = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
val mgr = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
|||||||
@@ -0,0 +1,120 @@
|
|||||||
|
package me.khodak.claudeusage
|
||||||
|
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import android.graphics.Canvas
|
||||||
|
import android.graphics.Paint
|
||||||
|
import android.graphics.RectF
|
||||||
|
import android.graphics.Typeface
|
||||||
|
import kotlin.math.cos
|
||||||
|
import kotlin.math.sin
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Draws a usage gauge as a circular ring Bitmap: rounded track ring + colored progress arc
|
||||||
|
* (sweeping clockwise from 12 o'clock) + an optional radial pace tick + center percentage and
|
||||||
|
* label. The ring counterpart to [BarRenderer] — same Bitmap contract, so it drops into both the
|
||||||
|
* home-screen widget (setImageViewBitmap) and the in-app card and renders identically.
|
||||||
|
*
|
||||||
|
* Design mirrors hamed-elfayome/Claude-Usage-Tracker's ring gauges, using this app's existing
|
||||||
|
* palette (SESSION_FILL clay / WEEKLY_FILL periwinkle, #252525 track, white pace marker).
|
||||||
|
*/
|
||||||
|
object RingRenderer {
|
||||||
|
|
||||||
|
private const val TRACK_COLOR = 0xFF252525.toInt()
|
||||||
|
private const val CENTER_TEXT_COLOR = 0xFFFFFFFF.toInt()
|
||||||
|
private const val LABEL_TEXT_COLOR = 0xFF999999.toInt()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param usedPct 0..100 fill of the ring
|
||||||
|
* @param markerPct where you "should be" right now (pace), or null for no tick
|
||||||
|
* @param fillColor ARGB progress-arc color (e.g. SESSION_FILL / WEEKLY_FILL)
|
||||||
|
* @param markerColor ARGB pace-tick color, or null
|
||||||
|
* @param centerText big text in the middle, e.g. "47%" (caller formats it)
|
||||||
|
* @param labelText small caption under the number, e.g. "SESSION" (null hides it)
|
||||||
|
* @param sizePx square bitmap edge; ring scales to fit
|
||||||
|
* @param strokePx ring thickness
|
||||||
|
*/
|
||||||
|
fun render(
|
||||||
|
usedPct: Int,
|
||||||
|
markerPct: Int?,
|
||||||
|
fillColor: Int,
|
||||||
|
markerColor: Int?,
|
||||||
|
centerText: String,
|
||||||
|
labelText: String? = null,
|
||||||
|
sizePx: Int = 360,
|
||||||
|
strokePx: Float = 36f
|
||||||
|
): Bitmap {
|
||||||
|
val bmp = Bitmap.createBitmap(sizePx, sizePx, Bitmap.Config.ARGB_8888)
|
||||||
|
val canvas = Canvas(bmp)
|
||||||
|
val cx = sizePx / 2f
|
||||||
|
val cy = sizePx / 2f
|
||||||
|
val pad = strokePx / 2f + 2f
|
||||||
|
val arcRect = RectF(pad, pad, sizePx - pad, sizePx - pad)
|
||||||
|
val radius = (sizePx - strokePx) / 2f - 2f
|
||||||
|
|
||||||
|
// Track ring (full circle).
|
||||||
|
val track = Paint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
|
style = Paint.Style.STROKE
|
||||||
|
strokeWidth = strokePx
|
||||||
|
strokeCap = Paint.Cap.ROUND
|
||||||
|
color = TRACK_COLOR
|
||||||
|
}
|
||||||
|
canvas.drawArc(arcRect, 0f, 360f, false, track)
|
||||||
|
|
||||||
|
// Progress arc — clockwise from 12 o'clock (-90°).
|
||||||
|
val pct = usedPct.coerceIn(0, 100)
|
||||||
|
if (pct > 0) {
|
||||||
|
val fill = Paint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
|
style = Paint.Style.STROKE
|
||||||
|
strokeWidth = strokePx
|
||||||
|
strokeCap = Paint.Cap.ROUND
|
||||||
|
color = fillColor
|
||||||
|
}
|
||||||
|
canvas.drawArc(arcRect, -90f, pct / 100f * 360f, false, fill)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pace tick — a short radial mark across the ring at the "should be here" angle.
|
||||||
|
if (markerPct != null && markerColor != null) {
|
||||||
|
val m = markerPct.coerceIn(0, 100)
|
||||||
|
val ang = Math.toRadians((-90f + m / 100f * 360f).toDouble())
|
||||||
|
val rInner = radius - strokePx / 2f - 1f
|
||||||
|
val rOuter = radius + strokePx / 2f + 1f
|
||||||
|
val tick = Paint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
|
style = Paint.Style.STROKE
|
||||||
|
strokeWidth = strokePx * 0.18f
|
||||||
|
strokeCap = Paint.Cap.ROUND
|
||||||
|
color = markerColor
|
||||||
|
}
|
||||||
|
canvas.drawLine(
|
||||||
|
cx + (rInner * cos(ang)).toFloat(), cy + (rInner * sin(ang)).toFloat(),
|
||||||
|
cx + (rOuter * cos(ang)).toFloat(), cy + (rOuter * sin(ang)).toFloat(),
|
||||||
|
tick
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Center percentage.
|
||||||
|
val hasLabel = !labelText.isNullOrEmpty()
|
||||||
|
val valuePaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
|
color = CENTER_TEXT_COLOR
|
||||||
|
textAlign = Paint.Align.CENTER
|
||||||
|
textSize = sizePx * 0.27f
|
||||||
|
typeface = Typeface.create(Typeface.DEFAULT, Typeface.BOLD)
|
||||||
|
}
|
||||||
|
val vfm = valuePaint.fontMetrics
|
||||||
|
val valueBaselineShift = -(vfm.ascent + vfm.descent) / 2f
|
||||||
|
val valueY = cy + valueBaselineShift - (if (hasLabel) sizePx * 0.07f else 0f)
|
||||||
|
canvas.drawText(centerText, cx, valueY, valuePaint)
|
||||||
|
|
||||||
|
if (hasLabel) {
|
||||||
|
val labelPaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
|
color = LABEL_TEXT_COLOR
|
||||||
|
textAlign = Paint.Align.CENTER
|
||||||
|
textSize = sizePx * 0.105f
|
||||||
|
letterSpacing = 0.12f
|
||||||
|
typeface = Typeface.create(Typeface.DEFAULT, Typeface.BOLD)
|
||||||
|
}
|
||||||
|
canvas.drawText(labelText!!.uppercase(), cx, cy + sizePx * 0.17f, labelPaint)
|
||||||
|
}
|
||||||
|
|
||||||
|
return bmp
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package me.khodak.claudeusage
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.os.Build
|
||||||
|
import me.khodak.claudeusage.data.PreferencesManager
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Central source of the two accent colors used by the bars/rings (session + weekly).
|
||||||
|
*
|
||||||
|
* Default = the Claude brand palette. When the user enables Material You *and* the device is
|
||||||
|
* Android 12+ (where the wallpaper-derived `system_accent*` palette exists), the fills switch to
|
||||||
|
* the dynamic system accents so the widget matches the rest of the home screen. On older devices
|
||||||
|
* the toggle is a no-op and the brand colors are always used.
|
||||||
|
*/
|
||||||
|
object ThemeColors {
|
||||||
|
|
||||||
|
const val SESSION_DEFAULT = 0xFFCC785C.toInt() // Claude orange
|
||||||
|
const val WEEKLY_DEFAULT = 0xFF7B8FCC.toInt() // Claude periwinkle
|
||||||
|
|
||||||
|
private fun dynamicAvailable(prefs: PreferencesManager): Boolean =
|
||||||
|
prefs.isMaterialYou() && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S
|
||||||
|
|
||||||
|
fun sessionFill(context: Context, prefs: PreferencesManager): Int =
|
||||||
|
if (dynamicAvailable(prefs)) context.getColor(android.R.color.system_accent1_300)
|
||||||
|
else SESSION_DEFAULT
|
||||||
|
|
||||||
|
fun weeklyFill(context: Context, prefs: PreferencesManager): Int =
|
||||||
|
if (dynamicAvailable(prefs)) context.getColor(android.R.color.system_accent2_300)
|
||||||
|
else WEEKLY_DEFAULT
|
||||||
|
}
|
||||||
@@ -31,10 +31,16 @@ class UsageUpdateWorker(
|
|||||||
val animJob = launch { rotateRefreshIcon() }
|
val animJob = launch { rotateRefreshIcon() }
|
||||||
try {
|
try {
|
||||||
val data = UsageRepository(prefs).fetchUsage()
|
val data = UsageRepository(prefs).fetchUsage()
|
||||||
|
// We passed the isLoggedIn() guard above, so if the session is gone now the
|
||||||
|
// cookie just expired this cycle — tell the user once (next cycle returns early).
|
||||||
|
if (!prefs.isLoggedIn()) {
|
||||||
|
Notifier.notifySessionExpired(context)
|
||||||
|
} else {
|
||||||
// Preserve last-good data so a failed/partial fetch never blanks the widget.
|
// Preserve last-good data so a failed/partial fetch never blanks the widget.
|
||||||
prefs.saveUsageData(data.mergedWith(prefs.getUsageData()))
|
prefs.saveUsageData(data.mergedWith(prefs.getUsageData()))
|
||||||
prefs.recordHistory(data) // history records only fresh readings
|
prefs.recordHistory(data) // history records only fresh readings
|
||||||
Notifier.checkAndNotify(context, prefs, data)
|
Notifier.checkAndNotify(context, prefs, data)
|
||||||
|
}
|
||||||
} catch (_: Exception) {}
|
} catch (_: Exception) {}
|
||||||
animJob.cancel()
|
animJob.cancel()
|
||||||
animJob.join()
|
animJob.join()
|
||||||
|
|||||||
@@ -132,11 +132,53 @@ class PreferencesManager(context: Context) {
|
|||||||
} catch (e: Exception) { emptyList() }
|
} catch (e: Exception) { emptyList() }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ── Widget style ─────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/** Home-screen widget visual style: [STYLE_BARS] (default) or [STYLE_RINGS]. */
|
||||||
|
fun getWidgetStyle(): String = prefs.getString(KEY_WIDGET_STYLE, STYLE_BARS) ?: STYLE_BARS
|
||||||
|
fun setWidgetStyle(style: String) = prefs.edit().putString(KEY_WIDGET_STYLE, style).apply()
|
||||||
|
|
||||||
// ── Notification settings ────────────────────────────────────────────────
|
// ── Notification settings ────────────────────────────────────────────────
|
||||||
|
|
||||||
fun isNotifyEnabled(): Boolean = prefs.getBoolean(KEY_NOTIFY_ENABLED, true)
|
fun isNotifyEnabled(): Boolean = prefs.getBoolean(KEY_NOTIFY_ENABLED, true)
|
||||||
fun setNotifyEnabled(v: Boolean) = prefs.edit().putBoolean(KEY_NOTIFY_ENABLED, v).apply()
|
fun setNotifyEnabled(v: Boolean) = prefs.edit().putBoolean(KEY_NOTIFY_ENABLED, v).apply()
|
||||||
|
|
||||||
|
// ── Material You (dynamic color) ─────────────────────────────────────────
|
||||||
|
|
||||||
|
/** When on (and Android 12+), bars/rings use the wallpaper-derived system accents. */
|
||||||
|
fun isMaterialYou(): Boolean = prefs.getBoolean(KEY_MATERIAL_YOU, false)
|
||||||
|
fun setMaterialYou(v: Boolean) = prefs.edit().putBoolean(KEY_MATERIAL_YOU, v).apply()
|
||||||
|
|
||||||
|
// ── Settings backup / restore ────────────────────────────────────────────
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serialize the user-tunable settings (NOT the session cookie or usage data) to JSON, so a
|
||||||
|
* reinstall doesn't lose preferences. Cookies are deliberately excluded — they're sensitive and
|
||||||
|
* device-bound, so a backup file stays safe to store anywhere.
|
||||||
|
*/
|
||||||
|
fun exportSettings(): String = gson.toJson(
|
||||||
|
mapOf(
|
||||||
|
"version" to 1,
|
||||||
|
KEY_NOTIFY_ENABLED to isNotifyEnabled(),
|
||||||
|
KEY_WIDGET_STYLE to getWidgetStyle(),
|
||||||
|
KEY_MATERIAL_YOU to isMaterialYou()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
/** Apply a settings JSON produced by [exportSettings]. Returns true if it parsed and applied. */
|
||||||
|
fun importSettings(json: String): Boolean = try {
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
val map = gson.fromJson(json, Map::class.java) as Map<String, Any?>
|
||||||
|
val e = prefs.edit()
|
||||||
|
(map[KEY_NOTIFY_ENABLED] as? Boolean)?.let { e.putBoolean(KEY_NOTIFY_ENABLED, it) }
|
||||||
|
(map[KEY_MATERIAL_YOU] as? Boolean)?.let { e.putBoolean(KEY_MATERIAL_YOU, it) }
|
||||||
|
(map[KEY_WIDGET_STYLE] as? String)?.let {
|
||||||
|
if (it == STYLE_BARS || it == STYLE_RINGS) e.putString(KEY_WIDGET_STYLE, it)
|
||||||
|
}
|
||||||
|
e.apply()
|
||||||
|
true
|
||||||
|
} catch (_: Exception) { false }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Per-level "already alerted" flag (e.g. "session_90"). Set when the level is crossed,
|
* Per-level "already alerted" flag (e.g. "session_90"). Set when the level is crossed,
|
||||||
* cleared when usage drops back below it — so each level fires once per window.
|
* cleared when usage drops back below it — so each level fires once per window.
|
||||||
@@ -155,6 +197,11 @@ class PreferencesManager(context: Context) {
|
|||||||
private const val KEY_HISTORY = "usage_history"
|
private const val KEY_HISTORY = "usage_history"
|
||||||
private const val KEY_NOTIFY_ENABLED = "notify_enabled"
|
private const val KEY_NOTIFY_ENABLED = "notify_enabled"
|
||||||
private const val KEY_AUTH_FAILS = "auth_fail_count"
|
private const val KEY_AUTH_FAILS = "auth_fail_count"
|
||||||
|
private const val KEY_WIDGET_STYLE = "widget_style"
|
||||||
|
private const val KEY_MATERIAL_YOU = "material_you"
|
||||||
|
|
||||||
|
const val STYLE_BARS = "bars"
|
||||||
|
const val STYLE_RINGS = "rings"
|
||||||
|
|
||||||
internal const val MIN_HISTORY_GAP_MS = 2 * 60 * 1000L // collapse readings <2 min apart
|
internal const val MIN_HISTORY_GAP_MS = 2 * 60 * 1000L // collapse readings <2 min apart
|
||||||
private const val HISTORY_RETENTION_MS = 7 * 24 * 60 * 60 * 1000L // keep 7 days
|
private const val HISTORY_RETENTION_MS = 7 * 24 * 60 * 60 * 1000L // keep 7 days
|
||||||
|
|||||||
@@ -291,6 +291,90 @@
|
|||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Widget style card -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:background="@drawable/widget_background"
|
||||||
|
android:padding="20dp"
|
||||||
|
android:layout_marginTop="16dp">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="RING WIDGET STYLE"
|
||||||
|
android:textColor="#888888"
|
||||||
|
android:textSize="11sp"
|
||||||
|
android:letterSpacing="0.1" />
|
||||||
|
|
||||||
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
||||||
|
android:id="@+id/switchRingStyle"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:text="Show usage as circular rings instead of bars on the full-size home-screen widget."
|
||||||
|
android:textColor="#AAAAAA"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:lineSpacingExtra="3dp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Material You card -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:background="@drawable/widget_background"
|
||||||
|
android:padding="20dp"
|
||||||
|
android:layout_marginTop="16dp">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="MATERIAL YOU COLORS"
|
||||||
|
android:textColor="#888888"
|
||||||
|
android:textSize="11sp"
|
||||||
|
android:letterSpacing="0.1" />
|
||||||
|
|
||||||
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
||||||
|
android:id="@+id/switchMaterialYou"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:text="Use your wallpaper-derived system accent colors for the bars/rings (Android 12+). Off = Claude brand colors."
|
||||||
|
android:textColor="#AAAAAA"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:lineSpacingExtra="3dp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<!-- Notifications card -->
|
<!-- Notifications card -->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@@ -333,6 +417,60 @@
|
|||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Backup & Restore card -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:background="@drawable/widget_background"
|
||||||
|
android:padding="20dp"
|
||||||
|
android:layout_marginTop="16dp">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="BACKUP & RESTORE"
|
||||||
|
android:textColor="#888888"
|
||||||
|
android:textSize="11sp"
|
||||||
|
android:letterSpacing="0.1" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:text="Save your settings (widget style, Material You, alerts) to a file so a reinstall doesn't lose them. The Claude session cookie is never included."
|
||||||
|
android:textColor="#AAAAAA"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:lineSpacingExtra="3dp" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="14dp">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/btnExportSettings"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginEnd="6dp"
|
||||||
|
android:text="Export"
|
||||||
|
style="?attr/materialButtonOutlinedStyle" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/btnImportSettings"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="6dp"
|
||||||
|
android:text="Import"
|
||||||
|
style="?attr/materialButtonOutlinedStyle" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/btnRefresh"
|
android:id="@+id/btnRefresh"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -0,0 +1,169 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Ring style of the full (4x2) widget. Header + footer mirror widget_layout.xml (same view
|
||||||
|
IDs) so ClaudeUsageWidget can attach the same click intents and peak/refresh state; the middle
|
||||||
|
swaps the two horizontal bars for two circular RingRenderer gauges side by side. -->
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/widget_root"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:background="@drawable/widget_background"
|
||||||
|
android:padding="14dp">
|
||||||
|
|
||||||
|
<!-- Header -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="Claude Pro"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/img_peak"
|
||||||
|
android:layout_width="16dp"
|
||||||
|
android:layout_height="16dp"
|
||||||
|
android:layout_marginEnd="4dp"
|
||||||
|
android:src="@drawable/ic_claude_burst"
|
||||||
|
android:contentDescription="Peak hours" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_peak"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginEnd="6dp"
|
||||||
|
android:text=""
|
||||||
|
android:textColor="#CC785C"
|
||||||
|
android:textSize="9sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/btn_refresh"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:src="@android:drawable/ic_menu_rotate"
|
||||||
|
android:background="@android:color/transparent"
|
||||||
|
android:tint="#999999"
|
||||||
|
tools:ignore="UseAppTint"
|
||||||
|
android:contentDescription="Refresh" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Divider -->
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginBottom="6dp"
|
||||||
|
android:background="#2A2A2A" />
|
||||||
|
|
||||||
|
<!-- Two ring gauges side by side — each fills its half so the ring grows as large as the
|
||||||
|
placed widget allows (limited by the available height), instead of a fixed 86dp. -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center"
|
||||||
|
android:weightSum="2">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:gravity="center_horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/ring_session"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:scaleType="fitCenter"
|
||||||
|
android:adjustViewBounds="false"
|
||||||
|
android:contentDescription="Session usage ring" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_session_label"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text=""
|
||||||
|
android:textColor="#999999"
|
||||||
|
android:textSize="10sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:gravity="center_horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/ring_weekly"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:scaleType="fitCenter"
|
||||||
|
android:adjustViewBounds="false"
|
||||||
|
android:contentDescription="Weekly usage ring" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_weekly_label"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text=""
|
||||||
|
android:textColor="#999999"
|
||||||
|
android:textSize="10sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Footer -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_status"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text=""
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textSize="9sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:ellipsize="end" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_updated"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text=""
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textSize="9sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
Binary file not shown.
Reference in New Issue
Block a user