求大神帮忙看看。
这是布局文件。
个人猜想是这一句报错,但不知道怎么改。
ft.add(R.id.layout_home_linear, aboutFragment, "AboutFragment");
这是布局文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
android:layout_width="match_parent"
android:layout_height="@dimen/dp100"
layout="@layout/layout_home_actionbar"
android:visibility="visible" />
<RelativeLayout
android:id="@+id/layout_home_content"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/layout_home_linear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
layout="@layout/layout_loading"
android:visibility="visible" />
</FrameLayout>
<include
android:layout_width="match_parent"
android:layout_height="@dimen/dp80"
android:layout_alignParentBottom="true"
layout="@layout/layout_hint"
android:visibility="gone" />
</RelativeLayout>
</LinearLayout>
个人猜想是这一句报错,但不知道怎么改。
ft.add(R.id.layout_home_linear, aboutFragment, "AboutFragment");