我想现在,如果在重新绘制布局时有任何可能的方法来触发事件,因为直接从横向右方向切换到横向左方向。
我尝试了OrientationEventListener。问题是它会触发快速。我正在进行UI更改,它们发生在重绘景观之前,看起来很糟糕。
我可以在更改上添加一些延迟,但视手机而言,更改可能会持续更多或更少。
对于onConfigurationChanged,时间是完美的,但当然它只适用于纵向到横向或横向到纵向。
我的应用程序不能暂停此更改,因此使用onPause,onStop等不是一种选择。
所以我正在寻找一个类似于onConfigurationChanged的事件,它也涵盖了横向左侧变化的景观。
答案 0 :(得分:1)
我尝试了OrientationEventListener。问题是它触发了 快点我正在进行UI更改,它们发生在景观之前 被重新绘制,看起来很糟糕。
您可以使用handler.post(runnable),这样您的UI更改不应该在重绘之前发生,但会在主线程上排队并在完成绘制后执行。
handler.post(new Runnable() {
@Override
public void run() {
//do the UI changes you want
}
});
如果这仍然没有帮助,你可以尝试一种困难和丑陋的方式来使用方向监听器和onLayout()方法:)
答案 1 :(得分:0)
您可以执行以下操作:
int result = this.getResources().getConfiguration().orientation;
if (result == 1){
a//set content view to portrait
}
else{
//set content view to landscape}
答案 2 :(得分:0)
我想你几乎得到了它。我不知道你是否做了类似的事情,但是这个让你在方向改变后立即改变UI。我这样做只是为了从ROTATION_270
更改为ROTATION_90
,但您可以添加到代码中,以便我可以涵盖从PORTRAIT
到REVERSE_PORTRAIT
等所有情况......
我的例子只是改变了#34; Landscape"到"逆转景观"当方向改变时。
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();
}
}
我知道可能在我们可以覆盖的方向更改之前调用了一个函数。我会玩,如果我找到一个,我会更新答案。
答案 3 :(得分:0)
您可以使用在这种情况下触发的DisplayListener,如以下答案所述:https://stackoverflow.com/a/23612548/2942294