1

我正在做从纵向到横向以及从横向到纵向的方向更改。我的代码如下

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    super.onCreateView(inflater, container, savedInstanceState);

    //Set titlebar as "my@heaven"
    getSherlockActivity().getSupportActionBar()
    .setBackgroundDrawable(getResources().getDrawable(R.drawable.myheaven));

    view = inflater.inflate(R.layout.memorial_listing, container, false);   

    setUpView(savedInstanceState);

    return view;
}

public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    // Checks the orientation of the screen
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {


    } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){

    }

  }

我也将其添加到清单中

android:configChanges="orientation|keyboardHidden|screenSize"

并且我将相同的布局放置在纵向布局文件夹和横向布局土地中,但是当我尝试旋转屏幕时,如果从纵向开始,则仍会从布局文件夹中获取布局。屏幕旋转但没有获得正确的文件夹来显示布局。请帮忙

4

2 回答 2

3
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    // Get a layout inflater (inflater from getActivity() or getSupportActivity() works as well)
    LayoutInflater inflater = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    if(// new orientation is potrait){
        // load potrait layout
    }else{
       // load landscape layout
    }
}

此方法在方向更改时接收回调。所以在接收回调时膨胀布局。

PS:两种布局都应该有不同的名称。不要将横向布局放在 layout-land 文件夹中。当我遇到这个问题时,我不得不从 layout-land 中拉出我的布局并将其放入 layout 文件夹中。虽然这不是一个好的做法,但在我的情况下,它只是这样工作的。

于 2013-09-12T04:32:56.567 回答
0

下面对我有用,

if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE){

    Log.e("On Config Change","LANDSCAPE Mode");
}else{

    Log.e("On Config Change","PORTRAIT Mode");
}

你能检查一下吗。

于 2013-09-12T04:26:50.357 回答