我已經使用約4小時來解決問題,但我不能。我想我的ListView
項目在onConfigurationChanged
中做了一些事情。 我第一次做的事情。的ListView getChildCount()返回1,當旋轉
android:configChanges="keyboardHidden|orientation|screenSize"
和我Activity
實施onConfigurationChanged
,我Fragment
也做到這一點。 最後我在ListView
item.All活動實施onConfigurationChanged
和片段將調用從縱向onConfigurationChanged
當屏幕爲橫向,但它不會在ListView
項調用。我定製了ListView
並實現了dispatchConfigurationChanged
,我發現getChildCount將在dispatchConfigurationChanged
中返回1。因爲我的ListView項目是2和3,所以onConfigurationChanged
不會調用。但我怎麼解決它?我搜索了很長時間,但我無法解決。
@ChristopheCVB但適配器無法讓ListView項調用onConfigurationChanged。 –