-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use custom text style instead of setting style dynamically
- Loading branch information
1 parent
722ccc2
commit 31453a4
Showing
10 changed files
with
251 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
AnkiDroid/src/main/java/com/ichi2/anki/StatisticsActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Copyright (c) 2024 Ashish Yadav <mailtoashish693@gmail.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License as published by the Free Software | ||
* Foundation; either version 3 of the License, or (at your option) any later | ||
* version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY | ||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
* PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with | ||
* this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.ichi2.anki | ||
|
||
import android.content.Context | ||
import android.content.Intent | ||
import android.os.Bundle | ||
import android.view.Menu | ||
import android.widget.Spinner | ||
import androidx.activity.viewModels | ||
import androidx.appcompat.app.ActionBar | ||
import androidx.fragment.app.Fragment | ||
import androidx.lifecycle.LiveData | ||
import androidx.lifecycle.MutableLiveData | ||
import androidx.lifecycle.ViewModel | ||
import androidx.lifecycle.lifecycleScope | ||
import com.ichi2.anki.dialogs.DeckSelectionDialog | ||
import com.ichi2.anki.widgets.DeckDropDownAdapter | ||
import com.ichi2.libanki.DeckId | ||
import kotlinx.coroutines.launch | ||
import kotlin.reflect.KClass | ||
import kotlin.reflect.jvm.jvmName | ||
|
||
/** | ||
* Handles changing of deck in Statistics webview | ||
* | ||
* Based in [SingleFragmentActivity], but with `configChanges="orientation|screenSize"` | ||
* to avoid unwanted activity recreations | ||
*/ | ||
class StatisticsActivity : | ||
SingleFragmentActivity(), | ||
DeckSelectionDialog.DeckSelectionListener, | ||
DeckDropDownAdapter.SubtitleListener { | ||
|
||
override val subtitleText: String | ||
get() = resources.getString(R.string.statistics) | ||
|
||
private val statisticsViewModel: StatisticsViewModel by viewModels() | ||
|
||
private var deckSpinnerSelection: DeckSpinnerSelection? = null | ||
var deckId: DeckId = 0 | ||
|
||
// menu wouldn't be visible in fragment's toolbar unless we override here | ||
override fun onCreateOptionsMenu(menu: Menu?): Boolean { | ||
menuInflater.inflate(R.menu.statistics, menu) | ||
return super.onCreateOptionsMenu(menu) | ||
} | ||
|
||
fun setupDeckSelector(spinner: Spinner, supportActionBar: ActionBar) { | ||
startLoadingCollection() | ||
deckSpinnerSelection = DeckSpinnerSelection( | ||
this, | ||
spinner, | ||
showAllDecks = true, | ||
alwaysShowDefault = false, | ||
showFilteredDecks = false | ||
).apply { | ||
lifecycleScope.launch { | ||
initializeStatsBarDeckSpinner(supportActionBar) | ||
} | ||
launchCatchingTask { | ||
selectDeckById(deckId, true) | ||
} | ||
} | ||
} | ||
|
||
override fun onDeckSelected(deck: DeckSelectionDialog.SelectableDeck?) { | ||
if (deck == null) { | ||
return | ||
} | ||
statisticsViewModel.setDeckName(deck.name) | ||
deckId = deck.deckId | ||
launchCatchingTask { | ||
deckSpinnerSelection!!.selectDeckById(deckId, true) | ||
} | ||
} | ||
|
||
companion object { | ||
|
||
fun getIntent(context: Context, fragmentClass: KClass<out Fragment>, arguments: Bundle? = null): Intent { | ||
return Intent(context, StatisticsActivity::class.java).apply { | ||
putExtra(FRAGMENT_NAME_EXTRA, fragmentClass.jvmName) | ||
putExtra(FRAGMENT_ARGS_EXTRA, arguments) | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* ViewModel for the StatisticsActivity, storing and managing the current deck name. | ||
*/ | ||
class StatisticsViewModel : ViewModel() { | ||
private val _deckName = MutableLiveData<String>() | ||
val deckName: LiveData<String> = _deckName | ||
|
||
fun setDeckName(value: String) { | ||
_deckName.value = value | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
AnkiDroid/src/main/res/layout/statistics_fragment_layout.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ Copyright (c) 2024 Ashish Yadav <mailtoashish693@gmail.com> | ||
~ | ||
~ This program is free software; you can redistribute it and/or modify it under | ||
~ the terms of the GNU General Public License as published by the Free Software | ||
~ Foundation; either version 3 of the License, or (at your option) any later | ||
~ version. | ||
~ | ||
~ This program is distributed in the hope that it will be useful, but WITHOUT ANY | ||
~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
~ PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
~ | ||
~ You should have received a copy of the GNU General Public License along with | ||
~ this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical"> | ||
|
||
<com.google.android.material.appbar.MaterialToolbar | ||
android:id="@+id/toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:navigationContentDescription="@string/abc_action_bar_up_description" | ||
app:navigationIcon="?attr/homeAsUpIndicator"> | ||
|
||
<Spinner | ||
android:id="@+id/stats_toolbar_spinner" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:background="?attr/selectableItemBackground" | ||
app:popupTheme="@style/ActionBar.Popup" /> | ||
|
||
</com.google.android.material.appbar.MaterialToolbar> | ||
|
||
<WebView | ||
android:id="@+id/webview" | ||
android:layout_width="match_parent" | ||
android:layout_height="0dp" | ||
android:layout_weight="1" | ||
android:visibility="invisible"/> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters