0

当活动的配置发生变化时,我应用此代码 -

public void onConfigurationChanged(Configuration newConfig)
    {
        super.onConfigurationChanged(newConfig);
        gridView.setNumColumns(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE ? 3:2);
        gridView.computeScroll();
    }

我希望如果GridView它在中途,它只会从那里开始,但随着配置的变化,它会从顶部重新开始。

4

2 回答 2

0

取一个标志并将其设置为 false 覆盖方法名称 onConfigurationChanged 并在此方法中设置标志为 true 并检查标志是否为 true 然后禁用滚动然后再次为 false 它您需要在清单中设置它还有代码片段如下

private boolean flag=false;



      @Override
        public void onConfigurationChanged(Configuration newConfig) {
            // TODO Auto-generated method stub
            Log.d("ONCONFIGCHANGE", "CALLED" );
            flag = true;
disableScroll();
            super.onConfigurationChanged(newConfig);
        }

对于清单,请执行以下操作

android:configChanges="orientation"

并在 onconfigchange 中使用以下方法

private void disableScroll()
{
gridview.setOnTouchListener(new OnTouchListener(){

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if(event.getAction() == MotionEvent.ACTION_MOVE){
            return true;
        }
        return false;
    }

});
}
于 2013-09-04T08:46:12.833 回答
0

在清单文件中添加一行

无需重写 onConfigChanges() 方法

<activity
            android:name="yourActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
 />
于 2013-09-04T08:43:56.057 回答