如何响应方向变化

| 屏幕方向改变时,我想显示一条祝酒消息。我怎么做?     
已邀请:
vnsheety, 您将必须在AndroidManifest中为该活动添加以下内容:
android:configChanges=\"orientation\"
然后,如果您覆盖函数
onConfigurationChanged
@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
            //display toast here
}
    
在if else条件下,android检查方向,并可以根据需要显示吐司...
    if (Intraday.this.getResources (). getConfiguration (). orientation == Configuration.ORIENTATION_PORTRAIT){ 
    Toast.makeText(class.this, \"msg\", Toast.LENGTH_SHORT).show();   

    }
    else if (Intraday.this.getResources (). getConfiguration (). orientation == Configuration.ORIENTATION_LANDSCAPE) {      

   Toast.makeText(class.this, \"msg\", Toast.LENGTH_SHORT).show();
    }   
    

要回复问题请先登录注册