要解决Android水平滚动视图不滚动的问题,可以尝试以下方法之一:
HorizontalScrollView horizontalScrollView = findViewById(R.id.horizontalScrollView);
horizontalScrollView.setScrollContainer(true);
TextView textView = findViewById(R.id.textView);
textView.setFocusable(false);
请根据您的具体需求选择适合的解决方法。