gpt4 book ai didi

java - 无法在单击按钮时替换 fragment

转载 作者:行者123 更新时间:2023-11-30 02:46:58 25 4
gpt4 key购买 nike

我正在尝试学习如何在 android 中实现 fragment 。因此,我在 activity_main.xml 中创建了两个按钮和一个 fragment 。如果我点击第一个按钮,fragment_one 应该会膨胀,同样,如果我点击第二个按钮,fragment_two 应该会膨胀。

但问题是它没有替换 fragment 。当我调试代码时,View.class 中的 performClick() 方法返回 false。

LogCat也没有报错。

我无法弄清楚代码有什么问题。

这是 activity_main.xml

<?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" >

<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/fragment1" />

<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/fragment2" />

<fragment
android:id="@+id/fragment_place"
android:name="com.example.myfragmentwithbuttonapp.FragmentTwo"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

这是 fragment_one.xml

<?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"
android:background="#00ffff">

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="@string/thisisfragment1"
android:textStyle="bold" />

</LinearLayout>

这是 fragment_two.xml

<?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"
android:background="#ffff00">

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/thisisfragment2"
android:textStyle="bold" />

</LinearLayout>

这是 FragmentOne.java

package com.example.myfragmentwithbuttonapp;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class FragmentOne extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {

//Inflate the layout for this fragment

return inflater.inflate(
R.layout.fragment_one, container, false);
}
}

这是 FragmentTwo.java

package com.example.myfragmentwithbuttonapp;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


public class FragmentTwo extends Fragment{
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {

// Inflate the layout for this fragment

return inflater.inflate(
R.layout.fragment_two, container, false);
}
}

这是 MainActivity.java

package com.example.myfragmentwithbuttonapp;

import android.app.Activity;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity {
Fragment fr;
FragmentManager fm;
FragmentTransaction fragmentTransaction;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);
Button button1 = (Button) findViewById(R.id.button1);
Button button2 = (Button) findViewById(R.id.button2);

button1.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {

fr = new FragmentOne();

fm = getFragmentManager();
fragmentTransaction = fm.beginTransaction();
fragmentTransaction.replace(R.id.fragment_place, fr);
fragmentTransaction.commit();

}
});

button2.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {

fr = new FragmentTwo();

fm = getFragmentManager();
fragmentTransaction = fm.beginTransaction();
fragmentTransaction.replace(R.id.fragment_place, fr);
fragmentTransaction.commit();

}
});
}

}

我希望我已经能够解释这个问题。

感谢任何帮助。

谢谢

最佳答案

对于 fragmentTransaction.replace() ,您需要为您的 fragment 和 fragment 本身指定一个容器。容器是将保存 fragment 的父 View 。通常是一个 FrameLayout。

现在您将 R.id.fragment_place 作为容器传递,但该 id 指的是 fragment 而不是 fragment 容器。

在activity_main.xml中,替换:

<fragment
android:id="@+id/fragment_place"
android:name="com.example.myfragmentwithbuttonapp.FragmentTwo"
android:layout_width="match_parent"
android:layout_height="match_parent" />

与:

<FrameLayout
android:id="@+id/fragment_place"
android:layout_width="match_parent"
android:layout_height="match_parent" />

这样效果很好。您的其余代码没问题。

关于java - 无法在单击按钮时替换 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24858383/

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