show code block

2016年12月21日 星期三

Fragment點擊穿透問題

Fragment點擊穿透問題



前言:
一言蔽之,發現很多人都有這問題。
之前會穿透真的是bug,後來的版本fragment已經做出相對應的修正。









實作:
主要程式碼
android:clickable="true"



在每個fragment布局內,偷加上這行。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
   
xmlns:tools="http://schemas.android.com/tools"
   
android:layout_width="match_parent"
   
android:layout_height="match_parent"
   
tools:context="com.stanley.a015865.image.AboutStanley"
   
android:clickable="true"
   
>










這篇就短短的,有問題留言囉!




Fragment全集

Fragment的使用() ─ activity內放置Fragment

Fragment的使用() ─ activity內切換Fragment

Fragment 返回上一頁 OnBackPressed

Fragment
點擊穿透

沒有留言:

張貼留言

協程(coroutine) - 協程為什麼要學它?

 Coroutine 協程 再強調一次 協程就是由kotlin官方所提供的線程api //Thread Thread { }.start() //Executor val execu...