嗨,我是Android开发的新手。
我正在使用片段 - 但我不完全理解它是如何工作的。
当我启动应用程序时,它会崩溃。
我已经google了很多但是大炮解决了这个问题:(
我有一个必须使用片段的Activity(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和Fragment:
<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
它给了我以下错误:
答案 0 :(得分:1)
修改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="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
解决最明显的错误。如果应用仍然崩溃,则发布Logcat
,但有例外。
此外,当您扩展Activity
类时,请确保仅使用SDK中的Fragment
相关类(如果您已在应用中注册,则不使用兼容包)。这些课程从Honeycomb
开始提供。
如果您要使用FragmentActivity
,请确保使用兼容包中的Fragment
类(来自FragmentActivity
)。
答案 1 :(得分:0)
尝试按照以下代码替换您的片段:
public class NewItemFragment extends ListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.new_item_fragment, null, false);
}
}