Skip to content

Commit

Permalink
To Don't 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PoopJournal committed Jul 16, 2021
1 parent 2473dfc commit e103b6a
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions .idea/modules/app/toDonts.app.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "rocks.poopjournal.todont"
minSdkVersion 21
targetSdkVersion 30
versionCode 2
versionName "1.1"
versionCode 3
versionName "1.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ public void show_habits_data() {
String[] temp = new String[5];
temp[0] = (cursor.getString(0));
temp[1] = (cursor.getString(1));
temp[2] = (cursor.getString(2));
String str=(cursor.getString(2));
if(str.contains("geodhola")){
str=str.replace("geodhola","'");
}
temp[2] = str;
temp[3] = (cursor.getString(3));
temp[4] = (cursor.getString(4));
Helper.habitsdata.add(temp);
Expand Down
11 changes: 6 additions & 5 deletions app/src/main/res/layout/recyclerview_layout_habits.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,21 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginLeft="15dp"

>

<Button
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginLeft="5dp"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_weight="0"
android:layout_gravity="top"
android:layout_marginTop="5dp"
android:id="@+id/addToAvoided"
/>
<Button
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_weight="0"
android:layout_gravity="top"
android:layout_marginTop="5dp"
Expand Down

0 comments on commit e103b6a

Please sign in to comment.