Add back button to the Image view
This commit is contained in:
parent
59c307323f
commit
41386adf4e
@ -7,10 +7,8 @@ import android.view.ViewGroup
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import androidx.fragment.app.Fragment
|
||||
import apps.amine.bou.readerforselfoss.R
|
||||
import apps.amine.bou.readerforselfoss.api.selfoss.Item
|
||||
import kotlinx.android.synthetic.main.fragment_article.*
|
||||
import kotlinx.android.synthetic.main.fragment_article.view.*
|
||||
import retrofit2.http.Url
|
||||
import kotlinx.android.synthetic.main.fragment_article.view.webcontent
|
||||
import kotlinx.android.synthetic.main.fragment_image.view.*
|
||||
|
||||
class ImageFragment : Fragment() {
|
||||
|
||||
@ -29,6 +27,10 @@ class ImageFragment : Fragment() {
|
||||
(activity as AppCompatActivity).supportActionBar?.hide()
|
||||
val view : View = inflater.inflate(R.layout.fragment_image, container, false)
|
||||
|
||||
view.backButton.setOnClickListener() {
|
||||
fragmentManager!!.popBackStackImmediate()
|
||||
}
|
||||
|
||||
view.webcontent.visibility = View.VISIBLE
|
||||
view.webcontent.settings.setLoadWithOverviewMode(true)
|
||||
view.webcontent.settings.setUseWideViewPort(true)
|
||||
|
@ -1,11 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:background="@android:color/black"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/backButton"
|
||||
style="?android:borderlessButtonStyle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:clickable="true"
|
||||
app:background="@android:color/transparent"
|
||||
app:backgroundTint="@null"
|
||||
app:rippleColor="@null"
|
||||
app:srcCompat="?attr/homeAsUpIndicator" />
|
||||
|
||||
<WebView
|
||||
android:id="@+id/webcontent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</LinearLayout>
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
Loading…
Reference in New Issue
Block a user