gpt4 book ai didi

android - LinearLayout 中的多个 fragment

转载 作者:行者123 更新时间:2023-11-30 00:43:38 25 4
gpt4 key购买 nike

尝试使用以下 XML 将两个 fragment 放置在 LinearLayout 中 -

主要 Activity :

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context="com.frag.myfragmentapplication.MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mainTV"
android:text="Hello World!" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<fragment
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:name="com.frag.myfragmentapplication.fragTwo"
tools:layout="@layout/fragment2" />
<fragment
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:name="com.frag.myfragmentapplication.fragOne"
tools:layout="@layout/fragment1" />
</LinearLayout>
</RelativeLayout>

MainActivity 代码:

 public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

虽然在设计模式下它看起来不错,但是当我运行这个测试应用程序时,我收到以下错误 -

java.lang.RuntimeException:无法启动 Activity ComponentInfo{com.frag.myfragmentapplication/com.frag.myfragmentapplication.MainActivity}:android.view.InflateException:二进制 XML 文件行 #24:二进制 XML 文件行#24:膨胀类 fragment 时出错

不确定代码有什么问题,将不胜感激。

最佳答案

当我尝试调试您的代码时出现此错误:

Caused by: java.lang.RuntimeException: berkaykoksal.com.test.testapp.MainActivity@308e8a6 must implement OnFragmentInteractionListener

现在我删除了其中一个 fragment 并尝试了一个仍然给出相同错误的 fragment 。这意味着您遇到的问题与多个 fragment 无关。问题是您创建了 fragment.java 文件但没有删除未使用 函数。导致这里问题的主要原因是 OnFragmentInterractionListener 未正确实现。但是你不需要它,对吗?太棒了

如果您像这样编辑您的 java 类以仅具有 OnCreateView 函数:

package *****;

import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


public class fragTwo extends Fragment {

public fragTwo() {
// Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_frag_two, container, false);
}

}

package *****;

import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;



public class fragOne extends Fragment {

public fragOne() {
// Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_frag_one, container, false);
}

}

您会注意到问题将得到解决。它确实对我有用,如果您有任何其他问题,我可以提供帮助。

并且始终记得为 XML 文件中的 fragment 提供 ID 值。

android:id="@+id/fragmentcontentarea1"
android:id="@+id/fragmentcontentarea2"

祝你好运!

关于android - LinearLayout 中的多个 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42160681/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com