2

現在、すべてのアクティビティにナビゲーション ドロワーを追加しようとしています。画面の端からスワイプするとナビゲーション ドロワーが表示されますが、そこには何もありません。黒い背景です。DrawerActivity のコードは次のとおりです。

public class DrawerActivity extends Activity {
public DrawerLayout drawerLayout;
public FrameLayout frameLayout;
public String[] mDrawerItems;
public ListView drawerList;

@Override
public void setContentView(int layoutResID) {
    drawerLayout = (DrawerLayout) getLayoutInflater().inflate(R.layout.drawer_n_activity, null);
    frameLayout = (FrameLayout) drawerLayout.findViewById(R.id.drawer_frame);
    drawerList = (ListView) drawerLayout.findViewById(R.id.left_drawer);
    getLayoutInflater().inflate(layoutResID, frameLayout, true);
    super.setContentView(drawerLayout);

    mDrawerItems = getResources().getStringArray(R.array.NAV_MENU_ITEMS);
    drawerList.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, mDrawerItems));
}
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_drawer);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_drawer, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
private class StableArrayAdapter extends ArrayAdapter<String> {

    HashMap<String, Integer> mIdMap = new HashMap<String, Integer>();

    public StableArrayAdapter(Context context, int textViewResourceId,
                              List<String> objects) {
        super(context, textViewResourceId, objects);
        for (int i = 0; i < objects.size(); ++i) {
            mIdMap.put(objects.get(i), i);
        }
    }

    @Override
    public long getItemId(int position) {
        String item = getItem(position);
        return mIdMap.get(item);
    }

    @Override
    public boolean hasStableIds() {
        return true;
    }

}

}

および drawer_n_activity.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/drawer_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"/>

編集: および activitydrawer.xml

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin"
            android:paddingBottom="@dimen/activity_vertical_margin">

<TextView
    android:text="@string/hello_world"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

私は何が間違っているのでしょうか?どんな助けでも大歓迎です

4

1 に答える 1

3

私は問題が何であるかを理解しました。リストビューの背景を不透明な黒の #111 に設定しました。もちろん、テキストも黒だったので見えませんでした。背景を #fff (白) に設定したところ、問題なく動作するようになりました。

于 2015-07-17T16:26:48.217 に答える