2013-07-20 69 views
3

我嘗試從支持庫13實現最新的抽屜佈局。 使用以下代碼,抽屜始終顯示在gridview下方。即使我嘗試調用bringToFront()仍然不起作用。可以幫助找到問題所在?謝謝。DrawerLayout隱藏在GridView下方

activity_main.xml中

<android.support.v4.widget.DrawerLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/drawer_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <FrameLayout 
     android:id="@+id/content_frame" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

    <ListView 
     android:id="@+id/left_drawer" 
     android:layout_width="240dp" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:choiceMode="singleChoice" 
     android:divider="@android:color/transparent" 
     android:dividerHeight="0dp" 
     android:background="#111"/> 
</android.support.v4.widget.DrawerLayout> 

member_home_layout.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="horizontal" > 

    <GridView 
     android:id="@+id/member_home_thumbnail_grid" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:columnWidth="90dp" 
     android:gravity="center" 
     android:horizontalSpacing="0dp" 
     android:numColumns="auto_fit" 
     android:stretchMode="columnWidth" 
     android:verticalSpacing="0dp" > 
    </GridView> 
</LinearLayout> 

主要活動:

在主要片段
public class BaseRootActivity extends BaseActivity { 
    private DrawerLayout     mDrawerLayout; 
    private ListView       mDrawerList; 
    private ActionBarDrawerToggle mDrawerToggle; 
    private String[]       mMainMenus; 

    public ListView getDrawerListView() { 
     return this.mDrawerList; 
    } 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     mMainMenus = this.getResources().getStringArray(R.array.main_menu_array); 
     mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); 
     mDrawerList = (ListView) this.findViewById(R.id.left_drawer); 

     // set up the drawer's list view with items and click listener 
     mDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.drawer_list_item, mMainMenus)); 

     // enable ActionBar app icon to behave as action to toggle nav drawer 
     getActionBar().setDisplayHomeAsUpEnabled(true); 
     getActionBar().setHomeButtonEnabled(true); 

     // ActionBarDrawerToggle ties together the the proper interactions 
     // between the sliding drawer and the action bar app icon 
     mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, R.drawable.ic_drawer, R.string.drawer_open, R.string.drawer_close) { 
      public void onDrawerClosed(View view) { 
       getActionBar().setTitle("actionbar title"); 
       invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu() 
      } 

      public void onDrawerOpened(View drawerView) { 
       getActionBar().setTitle("drawer title"); 
       invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu() 
      } 
     }; 
     mDrawerLayout.setDrawerListener(mDrawerToggle); 
    } 
... 

public class MemberHomeFragment extends Fragment implements OnItemClickListener { 

    private GridView       mGridListView; 
    private UserThumbnailAdapter memberAdapter; 

    @Override 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 
     View rootView = inflater.inflate(R.layout.member_home_layout, container, false); 

     mGridListView = (GridView) rootView.findViewById(R.id.member_home_thumbnail_grid); 
     mGridListView.setOnItemClickListener(this); 

     memberAdapter = new UserThumbnailAdapter(this.getActivity(), null); 
     mGridListView.setAdapter(memberAdapter); 

     this.startLoading(); // load thumbnails 

     return rootView; 
    } 
+0

這看上去很好。你能發佈你如何添加片段嗎?你不應該叫「bringToFront」。最主要的是你的「left_drawer」在xml中的「content_frame」之後,它就是這樣。你在做任何動畫或z對齊嗎?我的經驗來自支持庫的第4版,但它應該是一樣的。 – spierce7

+0

代碼是正常的:getFragmentManager()。beginTransaction()。replace(android.R.id.content,new MemberHomeFragment())。commit(); – PeiSong

+0

沒有動畫或z對齊(...我不知道如何z對齊lol) – PeiSong

回答

2

因此,如前所述,您使用抽屜佈局的方式不存在問題。這是你使用片段的方式的一個問題。 FragmentManager的工作方式是創建一個片段事務,然後告訴片段事務一組工作,然後將其提交,以便一次完成。

當你添加,刪除或在你的情況下替換一個片段,你必須告訴FragmentManager把你的片段放在哪裏,並且你給了它錯誤的位置。你告訴它把你的片段放在android.R.id.content裏,屏幕上的所有內容都在裏面。你只想添加一個片段到你自己的容器中。您指定的ID(android.R.id.content)以'android'開頭的事實是一個很大的讓步,它是android系統,而不是您的。

你反而想把它放在你指定的導航抽屜裏面的位置,這是R.id.content_frame。你可以看到你是如何規定的,在你的XML以上,我將在這裏複製給你:

<android.support.v4.widget.DrawerLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/drawer_layout" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<FrameLayout 
    android:id="@+id/content_frame" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" /> 

<ListView 
    android:id="@+id/left_drawer" 
    android:layout_width="240dp" 
    android:layout_height="match_parent" 
    android:layout_gravity="start" 
    android:choiceMode="singleChoice" 
    android:divider="@android:color/transparent" 
    android:dividerHeight="0dp" 
    android:background="#111"/> 

+0

我的壞...我從來沒有注意到android.r部分甚至用我自己的答案。非常感謝。 – PeiSong

0

我無法理解,但這裏的問題:(?但爲什麼)

正如@ spierce7指出的那樣,我呼籲片段置換的方式是不正確的 我的代碼是:

getFragmentManager().beginTransaction().replace(android.R.id.content, new MemberHomeFragment()).commit(); 

,當我改爲:

FragmentManager fragmentManager = getFragmentManager(); 
fragmentManager.beginTransaction().replace(R.id.content_frame, new MemberHomeFragment()).commit(); 

它的工作原理。

+0

看到我即將發佈的答案。 – spierce7