1

いくつかの異なるアイテムのリストビューと、画面の左側からドラッグできるドロワーレイアウトを備えた Android アプリを作成しようとしています。これが私が意味することです....

メイン画面はこんな感じ。 ここに画像の説明を入力

ドロワー メニューは次のようになります。 ここに画像の説明を入力

私が抱えている問題は、サイドドロワーメニューを開いてオプションをタップしても機能せず、メニューが閉じてしまうことです。ただし、メインのリストビュー ページとやり取りすることはできます。私のコードは次のようになります。

String[] homeArray = { "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test", "Test" };

private ListView homeListView;
private ArrayAdapter arrayAdapter;



private DrawerLayout mDrawerLayout;
private ListView mDrawerList;
private ActionBarDrawerToggle mDrawerToggle;

private CharSequence mDrawerTitle;
private CharSequence mTitle;
private String[] mDrawerTitles;

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



    mTitle = mDrawerTitle = getTitle();
    mDrawerTitles = getResources().getStringArray(R.array.Menu);
    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.left_drawer);

    // Set the adapter for the list view
    mDrawerList.setAdapter(new ArrayAdapter<String>(this,
            R.layout.drawer_list_item, mDrawerTitles));

そして activity_main.xml:

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

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

<ListView
    android:id="@+id/left_drawer"
    android:layout_height="match_parent"
    android:layout_width="240dp"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/darker_gray"
    android:dividerHeight="1dp"
    android:background="#111"
    />
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical"
              tools:context=".ListActivity" >

<ListView
        android:id="@+id/homeListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
</ListView>

</LinearLayout>

</android.support.v4.widget.DrawerLayout>

問題はxmlにあると感じていますが、よくわかりません。

4

1 に答える 1

3

NavigationDrawer を保持するアクティビティの完全なコードを投稿してください。

さらに、個々の NavigationDrawer セクション(「設定」、「バグの送信」、および「ヘルプ」) にFragments を使用することを強くお勧めします (Google も同様です)。

すべてのレイアウト コンポーネントをアクティビティのレイアウト ファイルに配置しないでください。

したがって、レイアウトは次のようになります。

<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">
    <!-- The main content view -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <!-- The navigation drawer -->
    <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>

FrameLayout content_frame は、ListView を保持する Fragment が入る場所です。 画像に表示した ListView を含むカスタム Fragment を作成 (または ListFragment を使用) し、それを「content_frame」に挿入するだけです。

これを使用して、コンテンツ フレーム内のフラグメントを置き換えます: (セクションを切り替える場合)

/** Swaps fragments in the main content view */
private void selectItem(int position) {
    // Create a new fragment and specify the planet to show based on position
    Fragment fragment = new YourListFragment(); // this fragment contains the list with all the "test" items

    // Insert the fragment by replacing any existing fragment
    FragmentManager fragmentManager = getFragmentManager();
    fragmentManager.beginTransaction()
                   .replace(R.id.content_frame, fragment)
                   .commit();

    // Highlight the selected item, update the title, and close the drawer
    mDrawerList.setItemChecked(position, true);
    setTitle(mPlanetTitles[position]);
    mDrawerLayout.closeDrawer(mDrawerList);
}

フラグメントがどのように見えるかの例: YourListFragment.java レイアウト ファイル "list_fragment.xml" には、必要なレイアウト コンポーネントが含まれているだけです。たとえば、ListView です。Fragments onCreateView() メソッド内で ListView を初期化し、入力します。

public class YourListFragment extends Fragment {

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

        View rootView = inflater.inflate(R.layout.list_fragment, container, false);

        return rootView;
    }
}

すべては、NavigationDrawer の作成方法に関する Google の例から引用されています。

http://developer.android.com/training/implementing-navigation/nav-drawer.html

于 2013-08-23T21:58:03.097 に答える