Fragment返回了两个视图

时间:2015-03-05 10:57:42

标签: android android-fragments

我的项目中已经有了片段。我在片段XML中添加了一个ImageButton。但是当我将它充实到我的活动时,我的布局活动中有两个按钮。为什么我的片段返回两个视图?以及如何修复它必须像我的片段XML一样正常的视图?提前谢谢。

screenshot *对不起,我无法上传图片,我的声誉不够

你可以看一下图片,里面有2个按钮。我只想要一个按钮。

下面的

是我的activity.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:background="#ffffff"
    android:orientation="vertical"
    android:padding="10dp" >

    <fragment
        android:id="@+id/fragment1"
        android:name="com.candlelightstudio.letsbesmartkid.ToolbarAbout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/bg_pilihsoal"
        android:orientation="vertical" >

        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/transparent"
            android:cacheColorHint="@android:color/transparent" >
        </ListView>

    </LinearLayout>

</LinearLayout>

下面是我的片段xml,名为toolbar_about

    <?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:background="@android:color/transparent"
    android:orientation="vertical" >

    <ImageButton
        android:id="@+id/btn_ToolAbout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:background="@android:color/transparent"
        android:src="@android:drawable/ic_menu_info_details" />

</LinearLayout>
下面的

是ToolbarAbout.java

package com.candlelightstudio.letsbesmartkid;

import android.os.Bundle;
import android.app.Fragment;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton;
import android.support.v4.app.FragmentActivity;
import android.app.FragmentManager;

public class ToolbarAbout extends Fragment {
    private FragmentAbout about;
    private FragmentManager fm;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
        View v = inflater.inflate(R.layout.toolbar_about, container, false);
        ImageButton tool = (ImageButton) v.findViewById(R.id.btn_ToolAbout);
        final Context c = inflater.getContext();
        about = new FragmentAbout();
        fm = getFragmentManager();
        tool.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                about.show(fm, "About");
            }
        });
        return v;
    }
}
下面的

是我的activity.java片段,用于膨胀片段

Fragment fr = new ToolbarAbout();
FragmentManager fm = getFragmentManager();
FragmentTransaction fragmentTransaction = fm.beginTransaction();
fragmentTransaction.replace(R.id.fragment1, fr);
fragmentTransaction.commit();

解决 只删除膨胀片段的代码,它才能正常工作

删除此代码

Fragment fr = new ToolbarAbout();
FragmentManager fm = getFragmentManager();
FragmentTransaction fragmentTransaction = fm.beginTransaction();
fragmentTransaction.replace(R.id.fragment1, fr);
fragmentTransaction.commit();

因为我已经为我的片段声明了一个类,在这里:

 <fragment
        android:id="@+id/fragment1"
        android:name="com.candlelightstudio.letsbesmartkid.ToolbarAbout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

你可以看到我添加 android:name =&#34; com.candlelightstudio.letsbesmartkid.ToolbarAbout&#34;

非常感谢@Manpreet Singh

2 个答案:

答案 0 :(得分:0)

您可以通过代码和 xml 添加片段。例如,要仅通过代码执行此操作,您需要将fragment视图更改为容器:

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

答案 1 :(得分:0)

我想ToolbarAbout片段会在您的应用中自动充气,因为您在xml中提供了以下行:

 android:name="com.candlelightstudio.letsbesmartkid.ToolbarAbout

因此无需为此替换片段,因此请从活动中删除这些行:

Fragment fr = new ToolbarAbout();
FragmentManager fm = getFragmentManager();
FragmentTransaction fragmentTransaction = fm.beginTransaction();
fragmentTransaction.replace(R.id.fragment1, fr);
fragmentTransaction.commit();