Skip to content

Commit

Permalink
DanaHistoryActivity spinner replacement #2
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosKozak committed Mar 19, 2022
1 parent e1bcad2 commit f3cb252
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions dana/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
package="info.nightscout.androidaps.dana">

<application>
<activity android:name="info.nightscout.androidaps.dana.activities.DanaHistoryActivity" />
<activity android:name="info.nightscout.androidaps.dana.activities.DanaUserOptionsActivity" />
<activity
android:name="info.nightscout.androidaps.dana.activities.DanaHistoryActivity"
android:theme="@style/AppTheme" />
<activity
android:name="info.nightscout.androidaps.dana.activities.DanaUserOptionsActivity"
android:theme="@style/AppTheme" />
</application>
</manifest>
7 changes: 4 additions & 3 deletions dana/src/main/res/layout/danar_history_activity.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/relativeLayout"
Expand Down Expand Up @@ -59,8 +60,8 @@
android:hint="@string/eventtype"
app:boxStrokeColor="@color/list_delimiter"
app:layout_constraintBottom_toTopOf="@+id/status"
app:layout_constraintEnd_toStartOf="parent"
app:layout_constraintStart_toEndOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header">

<androidx.appcompat.widget.AppCompatAutoCompleteTextView
Expand Down

0 comments on commit f3cb252

Please sign in to comment.