0

我现在想知道在重新绘制布局时是否有任何可能的方式来触发事件,因为直接从横向右方向切换到横向左方向的事件。

我尝试了 OrientationEventListener。问题是它触发速度很快。我正在做 UI 更改,它们发生在重新绘制景观之前,看起来很糟糕。

我可以在更改上添加一些延迟,但根据手机的不同,更改可能会持续或多或少。

对于 onConfigurationChanged,时机是完美的,但当然它只适用于纵向到横向或横向到纵向。

我的应用程序不能在此更改中暂停,因此不能选择使用 onPause、onStop 等。

所以我正在寻找一个类似于 onConfigurationChanged 的​​事件,它也涵盖从横向到横向的更改。

4

4 回答 4

1

我尝试了 OrientationEventListener。问题是它触发速度很快。我正在做 UI 更改,它们发生在重新绘制景观之前,看起来很糟糕。

您可以使用 handler.post(runnable),这样您的 UI 更改不应该在重绘之前发生,而是会在主线程上排队并在完成绘制后执行。

handler.post(new Runnable() {

        @Override
        public void run() {
        //do the UI changes you want

        }
    });

如果这仍然没有帮助,您可以尝试一种困难且丑陋的方式来利用方向侦听器和 onLayout() 方法:)

于 2013-03-23T11:23:54.440 回答
0

我想你几乎明白了。我不知道您是否会做类似的事情,但是这个可以让您在方向更改后立即更改 UI。我做了这个例子只是为了改变 from ROTATION_270to ROTATION_90,但你可以添加到代码中,这样我就可以涵盖从 t​​o 等的所有情况PORTRAIT......REVERSE_PORTRAIT我的例子只是在方向改变时将文本视图从“横向”更改为“反向横向”。

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:id="@+id/textview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true" />

</RelativeLayout>  

代码

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Display;
import android.view.OrientationEventListener;
import android.view.Surface;
import android.widget.TextView;

public class LandScapeToLandScapeReverse extends Activity
{
    private int mCurrentOrientation;
    private Display mDisplay;
    private OrientationEventListener mOrientationEventListener;

    private TextView mTextView;

    private static final String TAG = "LandScape To LandScape Reverse";

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        Log.d(TAG, "onCreate");

        setContentView(R.layout.activity_main);
        mTextView = (TextView) findViewById(R.id.textview);

        mDisplay = getWindowManager().getDefaultDisplay();
        mCurrentOrientation = mDisplay.getRotation();
        mTextView.setText("CurrentOrientation: " + mCurrentOrientation);

        mOrientationEventListener = new OrientationEventListener(this)
        {
            @Override
            public void onOrientationChanged(int orientation)
            {
                // On my phone it seem to change at 233 maybe should start lower 
                // to take into account of phones model variations.
                if (mCurrentOrientation == Surface.ROTATION_270 && orientation > 230)
                {
                    mTextView.setText("CurrentOrientation: " + orientation);
                    Log.d(TAG, "orientation = " + orientation  
                        + " getRotation: " + mDisplay.getRotation());
                    if (mDisplay.getRotation() != mCurrentOrientation)
                    {
                       // I think one should disable listener here and enable
                       // again after doing all the UI changes.
                        mOrientationEventListener.disable();
                        mTextView.setText("Landscape reverse"); 
                    }
                }
            }
        }; 

        mOrientationEventListener.enable();
    }

    @Override
    protected void onDestroy()
    {
        super.onDestroy();

        Log.d(TAG, "onDestroy");

        mOrientationEventListener.disable();
    }
}  

我有一些想法,也许在我们可以覆盖的方向更改之前调用了一个函数。我会玩,如果我找到一个,我会更新答案。

于 2013-03-24T06:18:35.440 回答
0

您可以使用在这种情况下触发的 DisplayListener,如本答案所述:https ://stackoverflow.com/a/23612548/2942294

于 2019-01-16T20:31:00.090 回答
-1

您可以执行以下操作:

int result = this.getResources().getConfiguration().orientation;
if (result == 1){
a//set content view to portrait

}
else{
//set content view to landscape}
于 2013-03-23T10:49:32.420 回答