嗨,我是新的android開發。片段不會工作
我使用的片段 - 但我不完全瞭解它是如何工作的。
當我啓動它崩潰的應用程序。
我用Google搜索了很多,但大炮解決這一:(
我有一個活動(MainActivity)必須使用一個片段MainActivity樣子:
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
而且main.xml中包含ListView和一個片段:
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<fragment class="com.todolist.NewItemFragment"
android:id="@+id/titles_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
我的片段延伸ListFragment,看起來像:
public class NewItemFragment extends ListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.new_item_fragment, container, false);
}
}
而且new_item_fragment.xml樣子:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
我不知道爲什麼它崩潰。我一定誤解了一些東西。 我希望有人在那裏可以幫助 - 不知道該怎麼做:)
THX
我已經導入庫:
android.support.v4.app.FragmentActivity
並提出在MainActivity類擴展FragmentActivity
它給我下面的錯誤:
後您的logcat的請。 – slezadav
請參閱我在答案中所做的修改。 – Luksprog