gpt4 book ai didi

android.support.v4.app.FragmentManager 还是 android.app.FragmentManager?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:16 27 4
gpt4 key购买 nike

我正在学习 Android 开发。我卡在了本应非常简单的事情上。

我正在创建一个包含一个 Activity、2 个 fragment 和 1 个界面的应用。

android:minSdkVersion="11"
android:targetSdkVersion="19

所以在主要 Activity 中,我尝试使用管理器创建对 fragment B 的引用。我被困在这里,因为 Eclispse 告诉我改变一些东西(见下文):

我的 Intent :`

@Override
public void respond(int i) {
// TODO Auto-generated method stub

FragmentManager manager =getFragmentManager();
FragmentB f2= (FragmentB) manager.findFragmentById(R.id.fragment2);

}`

如果我这样做,我会收到错误消息并需要执行一些更改。更改后的代码如下所示(我仍然无法访问 FragmentB):

    @Override
public void respond(int i) {
// TODO Auto-generated method stub

android.app.FragmentManager manager =getFragmentManager();
android.app.Fragment f2= manager.findFragmentById(R.id.fragment2);

}

有关更多详细信息,我还将 Activity 的导入 header 放在这里:

  package com.example.modular_ui;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;

public class MainActivity extends Activity implements Communicator{....

我在这里错过了什么?整个 support.v4/support.v7 对菜鸟来说有点困惑。

编辑:更改为:

    import android.app.Fragment;
import android.app.FragmentManager;

并且扩展 FragmentActivity 我仍然无法创建对 FragmentB 的引用:

@Override
public void respond(int i) {
// TODO Auto-generated method stub

FragmentManager man = getFragmentManager();
FragmentB b = man.findFragmentById(R.id.fragment2);

根据要求,我发布了 FragmentB 代码:

package com.example.modular_ui;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class FragmentB extends Fragment {

TextView text;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return inflater.inflate(R.layout.fragment_b, container);
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onActivityCreated(savedInstanceState);
text = (TextView) getActivity().findViewById(R.id.textView1);
}

主要 XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.modular_ui.MainActivity"
tools:ignore="MergeRootFrame" >

<fragment
android:id="@+id/fragment1"
android:name="com.example.modular_ui.FragmentA"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<fragment
android:id="@+id/fragment2"
android:name="com.example.modular_ui.FragmentB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/fragment1"
android:layout_marginTop="54dp" />

</RelativeLayout>

最佳答案

只需使用 getSupportFragmentManager(); , 成功添加支持库后。

关于android.support.v4.app.FragmentManager 还是 android.app.FragmentManager?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23044826/

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