如何让 activity 从 ScrollView 的底部开始?

How to make activity start at the bottom of the ScrollView?

我想制作一个带有关卡的测验应用程序。它有一个很长的背景图像,当您向下滚动时,在底部我有级别 1、2、3,...上升。如何让activity进入应用后自动滚动到底部?!

ScrollView scrollview = findViewById(R.id.scrollView);     
scrollview.post(new Runnable() {
    @Override
    public void run() {
         scrollview.fullScroll(ScrollView.FOCUS_DOWN);
    }
});