这是主要活动XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#71b7d6"
tools:context="com.csdelta.haroon.fragmentpractice.MainActivity">
<!--Binary XML file line #13 -->
<fragment
android:id="@+id/my_frag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:name="com.csdelta.haroon.fragmentpractice.MyFragment"/>
</LinearLayout>
这是片段活动XML
<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:background="#f7dc0f"
tools:context="com.csdelta.haroon.fragmentpractice.MyFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Hello, This is Fragment"
android:textSize="25dp"
android:layout_margin="20dp"
android:textColor="#000"
/>
</LinearLayout>
这是主要活动Java文件
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.d("Haroon", "onCreate");
setContentView(R.layout.activity_main);
}
}
这是片段Java文件
public class MyFragment extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
Log.d("Haroon", "onCreateView");
return inflater.inflate(R.layout.fragment_fragment_layout, container, false);
}
}
我得到的logcat消息说:
java.lang.RuntimeException:无法启动活动 ComponentInfo {com.csdelta.haroon.fragmentpractice / com.csdelta.haroon.fragmentpractice.MainActivity}: android.view.InflateException:二进制XML文件行#13:二进制XML 文件行#13:错误膨胀类片段 引起:android.view.InflateException:二进制XML文件行#13:二进制XML文件行#13:错误膨胀类 分段 引起:android.view.InflateException:二进制XML文件行#13:错误膨胀类片段 引起:android.app.Fragment $ InstantiationException:试图实例化一个 class com.csdelta.haroon.fragmentpractice.MyFragment
这不是片段
这是完整的LogCat: https://pastebin.com/iss7ui16
答案 0 :(得分:0)
我认为你的片段扩展支持Fragment,所以你的活动需要扩展AppCompatActivity而不是Activity。
答案 1 :(得分:0)
将片段隐藏到FrameLayout标记,如
<FrameLayout
android:id="@+id/my_frag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:name="com.csdelta.haroon.fragmentpractice.MyFragment"/>
答案 2 :(得分:0)
如果您收到相同的错误,请尝试将FrameLayout设为
const
并将片段称为
volatile
答案 3 :(得分:0)
将您的MainActivity更改为此
public class MainActivity extends FragmentActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.replace(R.id.my_frag, new MyFragment()).commit();
}
}