Skip to content

Commit 0897a8b

Browse files
authored
Merge pull request #32 from JLindemann42/development
v2.0.2-Build61
2 parents 561a284 + e2e6728 commit 0897a8b

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed

app/release/atomic-v200-b61.aab

7.6 MB
Binary file not shown.

app/src/main/java/com/jlindemann/science/model/EquationModel.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,7 @@ object EquationModel {
8080
equation.add(Equation("Activity #2", "Nuclear Physics", R.drawable.e_activity2, "A: Activity at time 0 \nA(0): Activity at time 0 \nlambda: Decay Constant \nt: Time"))
8181
equation.add(Equation("Absorbed Dose", "Nuclear Physics", R.drawable.e_absorbeddose, "D: Absorbed Dose \nE: Energy \nm: Mass"))
8282
equation.add(Equation("Equivalent Dose", "Nuclear Physics", R.drawable.e_equivalentdose, "H: Equivalent Dose \nD: Absorbed Dose \nQ: Quality Factor"))
83+
equation.add(Equation("Energy in Capacitor", "Electricity", R.drawable., ""))
84+
8385
}
8486
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android">
3+
<solid android:color="?attr/chipSurfaceColor"/>
4+
<corners android:radius="4dp"/>
5+
</shape>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:color="?attr/actionMenuTextColor">
4+
<item
5+
android:id="@android:id/mask"
6+
android:gravity="center">
7+
<shape android:shape="rectangle">
8+
<solid android:color="?attr/rippleColor"/>
9+
<corners android:radius="4dp"/>
10+
</shape>
11+
</item>
12+
</ripple>

app/src/main/res/layout/item_nuclide.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
android:id="@+id/item_nuclide_frame"
55
android:layout_width="32dp"
66
android:layout_height="32dp"
7-
android:background="@drawable/toast"
7+
android:background="@drawable/toast_nuclide"
8+
android:backgroundTint="?attr/colorSurfaceVariant"
89
android:foreground="@drawable/c_ripple"
910
android:clickable="true"
10-
android:elevation="2dp"
11+
android:elevation="0dp"
1112
android:focusable="true">
1213

1314
<TextView

0 commit comments

Comments
 (0)