我正在使用BaseActivity實現的使用多個活動(不使用片段)實現MaterialDrawer(庫MikePenz)的問題。另外,使用ButterKnife綁定視圖。使用具有BaseActivity/Child Activities和MaterialDrawer的Butterknife
在SO中發現了相關問題,並逐個嘗試了一下,但在我的情況下它並沒有工作,因爲它們大多數使用標準導航抽屜碎片或者它們與ButterKnife沒有關係。
代碼:
MainActivity類別
public class MainActivity extends AppCompatActivity {
@BindView(R.id.toolbar)
Toolbar toolbar;
private List<TestModel> destinations;
private DestinationAdapter mAdapter;
ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
setSupportActionBar(toolbar);
navManagement();
}
}
activity_main佈局
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/maincontainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.tvs.ui.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
/>
</android.support.design.widget.AppBarLayout>
</android.support.constraint.ConstraintLayout>
StoreActivity
public class StoresActivity extends MainActivity {
@BindView(R.id.searchEditText)
EditText mSearchEditText; // errorRequired view 'searchEditText' with ID 2131558557 for field 'mSearchEditText' was not found
@BindView(R.id.storesRecyclerView)
RecyclerView recyclerView; // here too
private List<TestModel> stores;
private StoreAdapter mAdapter;
//endregion
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_stores);
ButterKnife.bind(this);
loadRecyclerView();
testData();
}
}
activity_store佈局
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/searchEditText"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/storesRecyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:scrollbars="vertical">
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
我知道錯誤的原因是當佈局被誇大但視圖沒有在繼承的活動中膨脹時,MainActivity中的ButterKnife.Bind被調用。導航抽屜會加載,但點擊項目時會失敗,原因很明顯。我不能使用FrameLayout,因爲我使用的MaterialDrawer庫沒有(或者我不知道)有膨脹的視圖。
我試了好幾種方法,廣泛搜索等等之類SO1SO2GitGit2 Link,但沒有成功。
感謝任何幫助,深表感謝。提前致謝。
其中聲明瞭activity_main? –
@LOG_TAG請檢查問題,activity_main佈局以及代碼是否存在。 – user2695433
我在上面的代碼BaseActivity詢問你聲明setContentView(getLayoutResourceId());你從哪裏加載activity_main,因爲你沒有調用setContentView(R.layout.activity_main);在BaseActivity中(上面的代碼)任何完全正常工作的要點? –