我在处理可滚动视图时遇到问题。 我想要做的是读取输入并在其下面写入相应的结果,然后再次读取前一个输出下的另一个输入,依此类推,直到条件满足为止。
答案 0 :(得分:0)
您可以使用父滚动视图。像这样的东西
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- Your content here-->
</LinearLayout>
</ScrollView>