Skip to content

Commit

Permalink
1.Added "back" button
Browse files Browse the repository at this point in the history
2.Fixed bug: if you click on third option in first statement, you'll hve pain, because on each start app is trying to load 282 and fails.
  • Loading branch information
glubshev2001 committed Jun 16, 2019
1 parent 31d6442 commit 15129c0
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/assets/1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"text":" Деревянистые р.: дер., куст. или кустч.; надземный стб. древеснеющий (по крайней мере в нижней части), одетый коркой, живёт несколько или много лет ", "to":2}, {"text":" Травянистые р.; надземные побеги, как правило, отмирают на зиму, а если зимуют, то не одеты коркой и не одревесневают", "to":49}, {"text":"Олег любит обобщать, поэтому сделал так, чтобы путь не обязательно определялся только тезой и антитезой (это можно убрать тупа через файл в ассетах)", "to":282}]
[{"text":" Деревянистые р.: дер., куст. или кустч.; надземный стб. древеснеющий (по крайней мере в нижней части), одетый коркой, живёт несколько или много лет ", "to":2}, {"text":" Травянистые р.; надземные побеги, как правило, отмирают на зиму, а если зимуют, то не одеты коркой и не одревесневают", "to":49}, {"text":"Олег любит обобщать, поэтому сделал так, чтобы путь не обязательно определялся только тезой и антитезой (это можно убрать тупа через файл в ассетах)", "to":1}]
2 changes: 1 addition & 1 deletion app/src/main/java/msu/ug/ChoiseFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ChoiseFragment(private val actContext: Context) : ListFragment() {
return sb.toString()
}

private fun updateDisplayData(displayData: ArrayList<Map<String, Any>>) {
public fun updateDisplayData(displayData: ArrayList<Map<String, Any>>) {
val arr = JSONArray(getPlainText(storage.currentChoise.toString()))
toIndices.clear()
displayData.clear()
Expand Down
13 changes: 12 additions & 1 deletion app/src/main/java/msu/ug/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package msu.ug
import android.content.pm.ActivityInfo
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle

import android.widget.Button


class MainActivity : AppCompatActivity() {
Expand All @@ -13,8 +13,19 @@ class MainActivity : AppCompatActivity() {
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
setContentView(R.layout.activity_main)

val backButton:Button = findViewById(R.id.back)
backButton.setOnClickListener {
val storage:Storage = Storage(this)
storage.currentChoise = 1
val transaction = supportFragmentManager.beginTransaction()
transaction.replace(R.id.fragment_frame, ChoiseFragment(this))
transaction.commit()
}


val transaction = supportFragmentManager.beginTransaction()
transaction.replace(R.id.fragment_frame, ChoiseFragment(this))
transaction.commit()

}
}
4 changes: 4 additions & 0 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@
android:layout_height="match_parent"
android:id="@+id/fragment_frame" android:background="#4CAF50">

<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/back"/>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit 15129c0

Please sign in to comment.