我正在尝试在我的应用程序中设置ListView
的适配器。它还使用ViewPager
。
以前,我在onPostExecute()
方法(AsyncTask
类)中运行了下面的代码,它运行正常,但我现在将其分为两个不同的活动,现在我得到了NullPointerException
。
MainActivity
&#39} onCreate()
方法的一部分:
stFragment = (St)getSupportFragmentManager().findFragmentById(R.id.pager); //R.id.stFragment does not work either
stFragment.setListAdapter(mAdapter);
stFragment.setOnItemClick();
fragment_st.xml:
<FrameLayout 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"
tools:context="example.St"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:id="@+id/stFragment">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/placesList"
android:layout_gravity="center_horizontal|top"
android:nestedScrollingEnabled="false" />
</FrameLayout>
activity_main.xml中:
<android.support.v4.widget.DrawerLayout
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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<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=".MainActivity">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
></android.support.v4.view.ViewPager>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>