我有流动的工具栏
toolbar.xml
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark">
我在主要活动中调用它:
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
问题在于:
工具栏/操作栏覆盖我的主要活动。
如何在不使用填充的情况下解决这个问题?喜欢它在java代码中。
即时通讯使用LayoutInflator
和我的主要活动extends ActionBarActivity
与导航抽屉一起使用。
LayoutInflater inflater = (LayoutInflater) this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View contentView = inflater.inflate(R.layout.activity_load_game, null, false);
dr.addView(contentView,1)
告诉我你是否需要更多信息,或者我错过了什么。
由于