我在我的布局中使用 SeekBar 并且我有另一个是 RelativeLayout 的视图。
<CoordinatorLayout>
<RelativeLayout>
...
</RelativeLayout>
<SeekBar
android:id="@+id/progressSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="70"
android:progressDrawable="@drawable/player_seek_bar_progress"/>
</CoordinatorLayout>
Run Code Online (Sandbox Code Playgroud)
当我触摸这个 RelativeLayout 时,SeekBar 获得了焦点……即使在我的代码中,我的布局也没有发现任何问题……
有人有同样的问题吗?
谢谢大家的回答:)