我在 xml 中创建了一个滚动视图..我将滚动视图的高度设置为包装内容...我以编程方式向这个滚动视图添加一个线性布局我的问题是当我们向我想要的线性布局添加更多内容时聚焦滚动视图中的最后一个元素?
这是我的代码..
<ScrollView
android:id="@+id/ScrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:background="#ffffff"
android:fillViewport="true"
android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollbars="vertical" >
<LinearLayout
android:id="@+id/layoutMessage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/linearLayout1"
android:layout_weight="1"
android:background="#ffffff"
android:orientation="vertical"
>
</LinearLayout>
</ScrollView>