feat: score graph

This commit is contained in:
rebelonion 2024-03-02 22:32:40 -06:00
parent d2876d04f5
commit a9f8d223e9
7 changed files with 139 additions and 90 deletions

View file

@ -61,7 +61,7 @@
android:layout_width="82dp"
android:layout_height="82dp"
android:layout_gravity="center"
android:backgroundTint="@color/bg_opp"
android:backgroundTint="@color/transparent"
app:cardCornerRadius="64dp">
<com.google.android.material.imageview.ShapeableImageView
@ -69,8 +69,7 @@
android:layout_width="78dp"
android:layout_height="78dp"
android:layout_gravity="center"
app:srcCompat="@drawable/ic_round_add_circle_24"
tools:tint="@color/bg"
tools:tint="@color/transparent"
tools:ignore="ContentDescription,ImageContrastCheck" />
</com.google.android.material.card.MaterialCardView>

View file

@ -86,71 +86,71 @@
android:id="@+id/formatChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/status_chart_view"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/scoreChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/statusChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/lengthChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/releaseYearChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/startYearChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/genreChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/tagChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/countryChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/voiceActorChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/staffChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
<com.github.aachartmodel.aainfographics.aachartcreator.AAChartView
android:id="@+id/studioChartView"
android:layout_width="match_parent"
android:background="?android:colorBackground"
android:layout_height="250dp" />
android:layout_height="350dp" />
</LinearLayout>

View file

@ -7,7 +7,7 @@
<color name="nav_bg_inv">#001C1C1C</color>
<color name="nav_tab">#40ffffff</color>
<color name="nav_tab_disabled">#40ffffff</color>
<color name="status">#00000000</color>
<color name="transparent">#00000000</color>
<color name="nav_status">#80000000</color>
<color name="filler">#29FF6B08</color>
<color name="chip">#b3aead</color>

View file

@ -1,7 +1,7 @@
<resources>
<style name="Theme.Dantotsu" parent="Theme.Base">
<item name="android:statusBarColor">@color/status</item>
<item name="android:statusBarColor">@color/transparent</item>
<item name="colorOnPrimary">@color/bg_black</item>
<item name="android:textColor">@color/bg_white</item>
<item name="colorSecondaryVariant">@color/violet_400</item>

View file

@ -12,7 +12,7 @@
<color name="nav_bg_inv">#00FFFFFF</color>
<color name="nav_tab">#40000000</color>
<color name="nav_tab_disabled">#19000000</color>
<color name="status">#00000000</color>
<color name="transparent">#00000000</color>
<color name="button_icon">#A9FFFFFF</color>
<color name="nav_status">#80FFFFFF</color>
<color name="fav">#ad5edd</color>