在我的应用程序中,我尝试使用Bruicetoo的{strong> WheelPicker 工作正常但是当我在ScrollView
内部时,它停止响应并且仅滚动了活动但是我我无法滚动WheelPicker。我也在选择器中尝试过android:nestedScrollingEnabled="true"
但是没有用。最低SDK版本为21,目标版本为23。
更新代码
布局:
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="90dp"
android:layout_marginTop="20dp">
<com.bruce.pickerview.LoopView
android:id="@+id/loop_view"
android:layout_width="50dp"
android:layout_height="90dp"
android:layout_below="@+id/calendar_view"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:nestedScrollingEnabled="true"
app:canLoop="true"
app:centerTextColor="#ff000000"
app:drawItemCount="7"
app:initPosition="3"
app:lineColor="@color/PrimaryBlue"
app:textSize="12sp"
app:topBottomTextColor="#ffafafaf" />
</LinearLayout>
</ScrollView>
代码:
loopView = (LoopView) findViewById(R.id.loop_view);
loopView.setInitPosition(2);
loopView.setCanLoop(false);
loopView.setLoopListener(new LoopScrollListener() {
@Override
public void onItemSelect(int i) {
Toast.makeText(RegisterRoomActivity.this, StartHr.get(i), Toast.LENGTH_LONG).show();
}
});
loopView.setTextSize(25);//must be called before setDateList
loopView.setDataList(StartHr);