我的用户界面类似于
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout...>
<ScrollView .../>
...
</LinearLayout...>
我可以将整个 LinearLayout 保存为位图。但是一旦我使用滚动条,输出就不是我预期的“完成”图像。
你能给我一些提示吗?
谢谢您的帮助
我的用户界面类似于
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout...>
<ScrollView .../>
...
</LinearLayout...>
我可以将整个 LinearLayout 保存为位图。但是一旦我使用滚动条,输出就不是我预期的“完成”图像。
你能给我一些提示吗?
谢谢您的帮助
将 ScrollView 设为父级...
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="318dp"
android:layout_height="495dp"
>
Your other content
</LinearLayout>
</ScrollView>