0

横向きモードでは、リストビューは画面の左側に表示され、右側は空白になります。ユーザーがアイテムをクリックすると、画面の右側に詳細が表示されますが、リストビューは消えます。ポートレート モードのように動作しているように見えますが、明らかにランドスケープ xml レイアウトランドを使用しています。数十の例を見た後でも、リストビューを詳細とともに画面に残すことができません。誰かが私を正しい方向に向けることができますか? これが私のコードです:

BookDetailsActivity: public class BookDetailsActivity extends Activity {

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

    //** Getting the orientation ( Landscape or Portrait ) of the screen 
    int orientation = getResources().getConfiguration().orientation;

    //** Landscape Mode 
    if(orientation == Configuration.ORIENTATION_LANDSCAPE ){
      //setting the landscape layout for this activity
      setContentView(R.layout.buy_tbfrag);

      //get fragment manager for fragment related operations
      FragmentManager fm = getFragmentManager();

      //get fragment transaction object, which can add, move or replace a fragment
      FragmentTransaction ft = fm.beginTransaction();

      //getting the existing detailed fragment object, if it already exists.
      //the fragment object is retrieved by its tag name
      Fragment prevFrag = fm.findFragmentByTag("book.details");

      //System.out.println("prevFrag = " + prevFrag);
      //** Remove the existing detailed fragment object if it exists */
      if(prevFrag!=null) {
          ft.remove(prevFrag);
      }

      //instantiating the fragment BookDetailsFragment
      BookDetailsFragment detailsFragment = new BookDetailsFragment();

      //creating a bundle object to pass the data (clicked item's position)
      //from this activity to fragment
      Bundle b = new Bundle();

      //setting the data to the bundle object from the Intent
      b.putString("load the bundle objects);
        ...

      //setting the bundle object to the fragment
      detailsFragment.setArguments(b);

      //adding the fragment to the fragment transaction
      ft.add(R.id.details_fragment_container, detailsFragment,"book.details");

      //add the fragment transaction to backstack
      //ft.addToBackStack(null);

      //Executing the transaction
      ft.commit();

    } else {
    ...
    start Portrait mode code...
    }
}   

Buy_tbfrg xml コード:

<LinearLayout
    android:layout_width="200dip"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="3dip" >

    <EditText
        android:id="@+id/titleSearch"
        android:layout_width="200dip"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dip"
        android:background="@drawable/rectangle_box"
        android:hint="@string/hint"
        android:padding="5dip"
        android:textStyle="italic" />

    <ListView
        android:id="@android:id/list"
        android:layout_width="200dip"
        android:layout_height="wrap_content" >
    </ListView>
</LinearLayout>

<FrameLayout
    android:id="@+id/details_fragment_container"
    android:layout_width="0dip"
    android:layout_height="match_parent"
    android:layout_weight="3.97" >

</FrameLayout>

</LinearLayout>

BookDetailsFragment: public class BookDetailsFragment extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
        Bundle savedInstanceState) {

       View view = inflater.inflate(R.layout.book_details, null);

       System.out.println("BookDetailsFragment executed");

      //Defines the TextViews in R.layout.book_details
      TextView bkTitle = (TextView)view.findViewById(R.id.bookTitle);
      ...

      //Retrieve the bundle object passed from BuyFragTab
      Bundle b = getArguments();


      //Getting the item's clicked position and setting corresponding details     
      //First check the bundle to ensure the data has been passed
      if (b != null) {
         bkTitle.setText    ("Title: " + b.getString("Selected_Title"));
        ...
      }

    return view;
}
4

1 に答える 1

1

ローダーを使用していますか? ListFragment または DetailFragment でローダーを開始または再起動するときは、必ず別の番号 (arg0) を渡してください。

于 2013-10-04T22:28:25.173 に答える