gpt4 book ai didi

android - 如何在android中实现在 fragment 内显示和隐藏 fragment

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:01:29 25 4
gpt4 key购买 nike

如何在Android中实现在fragment中显示和隐藏fragment?我在 Activity 中添加了两个 fragment 。一个包含菜单的 fragment 和一个包含子菜单的 fragment 。我在菜单 fragment 中有很多按钮,如主页、创意等。如果我单击创意按钮。我必须显示子菜单。如果我再次单击想法按钮,我必须隐藏子菜单。谁能提供示例,或者如何在另一个 fragment 中访问一个 View fragment ?

这是我的主要布局

?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<fragment class="com.gcm.fragment.CommonFragment"
android:id="@+id/the_frag"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<fragment class="com.gcm.fragment.SubFragment"
android:id="@+id/the_frag1"
android:layout_marginTop="130dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />


</LinearLayout>

在我的 fragment 中

package com.gcm.fragment;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.widget.TextView;

public class CommonFragment extends Fragment implements OnClickListener {
TextView txtIhaveIdea=null;
boolean menuVisible=false;
public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) {
ViewGroup layout = (ViewGroup) inflater.inflate(R.layout.collapsed_menu2, container, false);

txtIhaveIdea=(TextView)layout.findViewById(R.id.txtIhaveAnIdea);
txtIhaveIdea.setOnClickListener(this);

return layout;
}

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(!menuVisible)
{
FragmentManager fm = getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
fm.beginTransaction();
Fragment fragOne = new SubFragment();
ft.show(fragOne);
}
else
{
FragmentManager fm = getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();

fm.beginTransaction();
Fragment fragOne = new SubFragment();
ft.hide(fragOne);
}

}



}

谢谢

最佳答案

您可以尝试通过 id 获取 framelayout 或 fragment 并更改其可见性

View frag = findViewById(R.id.my_fragment);
frag.setVisibility(View.VISIBLE);

关于android - 如何在android中实现在 fragment 内显示和隐藏 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8432193/

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