Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想实现 ViewPager 或 ScrollView 之类的东西,但由于某些原因我不想使用它。据我了解,我需要将父布局调整为 N*(屏幕宽度)的宽度,N 是页数。我怎样才能做到这一点?
尝试使用水平滚动视图并像这样按像素设置布局宽度
android:layout_width="2500px"
或者
android:layout_width="2500dp"
然后将您的布局添加到滚动视图。