简体   繁体   English

Android中的片段不必要重复多次

[英]Fragment in Android unnecessarily repeating more than once

Iam trying to keep a simple fragment with only one button.But it is coming 2 times like this 我试图用一个按钮保持一个简单的片段,但是这样会出现2次

这是图像

I had a linear layout and another nested linear layout in it.These are all present in activity_welcome.xml whose content is as follows : 我有一个线性布局和另一个嵌套的线性布局,这些都存在于activity_welcome.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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#99cc00"
    android:orientation="vertical"
    tools:context="com.acs.AfterLogin.WelcomeActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/replacable_container"
        android:orientation="vertical">
    </LinearLayout>

</LinearLayout>

Iam trying to replace the replacable_container(Linear Layout) with the fragment whose java class is this : 我试图用其java类是这个片段替换replacable_container(Linear Layout):

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.CardView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

import com.acs.AfterLogin.WelcomeActivity;
import com.acs.R;
import com.squareup.picasso.Picasso;

import de.hdodenhof.circleimageview.CircleImageView;



public class WelcomeFragment1 extends Fragment{

    View v;
    CardView cardView1,cardView2,cardView3;
    CircleImageView userIcon;
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        v=inflater.inflate(R.layout.welcome_fragment_1,container);
        return inflater.inflate(R.layout.welcome_fragment_1,container,false);
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
    }
}

The xml content of fragment is this: 片段的xml内容是这样的:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#e0ebe5"
    android:orientation="vertical">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello"/>
</LinearLayout>

The operations like fragment transcation and all are contained in the mainactivity whose java code is this : 片段事务之类的操作和所有操作都包含在mainactivity中,其java代码为:

import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import com.acs.AfterLogin.WelcomeFragments.WelcomeFragment1;
import com.acs.R;
import com.squareup.picasso.Picasso;

import de.hdodenhof.circleimageview.CircleImageView;


public class WelcomeActivity extends AppCompatActivity {
    FragmentTransaction transaction;
    WelcomeFragment1 frag1;
    FragmentManager manager;
    String imageUri;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_welcome);
        (new FragTask()).execute();
    }
    private class FragTask extends AsyncTask<Void, Void, Void> {
        @Override
        protected Void doInBackground(Void... voids) {
            transaction = manager.beginTransaction();
            frag1 = new WelcomeFragment1();
            transaction.replace(R.id.replacable_container, frag1, "welcome_1");
            transaction.commit();
            return null;
        }
    }
}

Thanks a lot in advance :) 在此先感谢:)

Try to change this line 尝试更改此行

v=inflater.inflate(R.layout.welcome_fragment_1,container);

to

v=inflater.inflate(R.layout.welcome_fragment_1,container, false);

And return the inflated view. 并返回放大的视图。 The boolean value indicates that you don't want to attach your view to container. 布尔值表示您不想将视图附加到容器。 Check this . 检查一下 Fragment will attach it later by itself. 片段稍后会自己附加。

Please return inflated view instead of inflating again in return statement. 请返回展开的视图,而不是在return语句中再次放大。

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
 v=inflater.inflate(R.layout.welcome_fragment_1,container);
 return v;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM