2011-04-14 35 views

回答

4

vnsheety,

你將不得不加入AndroidManifest爲以下活動:

android:configChanges="orientation" 

然後,如果你重寫功能onConfigurationChanged

@Override 
public void onConfigurationChanged(Configuration newConfig) { 
    super.onConfigurationChanged(newConfig); 
      //display toast here 
} 
3

檢查方向,在這你可以顯示敬酒,只要你想......

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(); 
    }