多个活动的一个片段

时间:2016-09-08 14:50:38

标签: android android-activity fragment

我们总是听说过使用一个活动的多个片段。可能相反吗?我很好奇。我们可以为多个活动使用相同的片段。请举一个例子。

4 个答案:

答案 0 :(得分:4)

如何在多个活动中重用一个片段

enter image description here

带有两个按钮的绿色背景是一个在多个活动中重复使用的单个片段。

1。制作片段类和布局

MyFragment.java

import android.support.v4.app.Fragment;

public class MyFragment extends Fragment implements View.OnClickListener {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        View myLayout = inflater.inflate(R.layout.my_fragment_layout, container, false);

        // add click listeners to the buttons in the fragment
        Button buttonOne = myLayout.findViewById(R.id.button_1);
        Button buttonTwo = myLayout.findViewById(R.id.button_2);
        buttonOne.setOnClickListener(this);
        buttonTwo.setOnClickListener(this);

        return myLayout;
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.button_1:
                Toast.makeText(getContext(), "Button One", Toast.LENGTH_SHORT).show();
                break;
            case R.id.button_2:
                Toast.makeText(getContext(), "Button Two", Toast.LENGTH_SHORT).show();
                break;
        }
    }
}

my_fragment_layout.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="@android:color/holo_green_dark"
    android:orientation="vertical">

    <Button
        android:id="@+id/button_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button 1"/>

    <Button
        android:id="@+id/button_2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button 2"/>
</LinearLayout>

2。将片段添加到您的活动

activity_blue.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_blue_dark"
    android:orientation="vertical">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="goToRedActivityButtonClick"
        android:text="Go to red activity"/>

    <!-- reused fragment -->
    <fragment
        android:id="@+id/my_fragment"
        android:name="com.example.onefragmentmultipleactivities.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>

activity_red.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff3636"
    android:orientation="vertical">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="goToYellowActivityButtonClick"
        android:text="Go to yellow activity"/>

    <!-- reused fragment -->
    <fragment
        android:id="@+id/my_fragment"
        android:name="com.example.onefragmentmultipleactivities.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>

activity_yellow.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#f9f478"
    android:orientation="vertical">

    <!-- reused fragment -->
    <fragment
        android:id="@+id/my_fragment"
        android:name="com.example.onefragmentmultipleactivities.MyFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>

备注

为简单起见,我们将片段直接添加到xml中。您还可以在代码中动态加载片段。请参阅documentation以获取相关帮助。

答案 1 :(得分:0)

我不会写完整个代码,但我可以给你一个正在寻找的确切示例

考虑一个人可以注册为adminuser

的应用程序

现在,在处理它时,你在admin registration activity中要求

制作3个片段
  

1。)个人信息

     

2。)学术信息

     

3。)管理员详细信息

现在user registration activity说你制作了两个片段来获取以下信息

  

1。)个人信息

     

2。)用户详细信息

这里您使用个人信息片段2次进行2次活动

这是儿童游戏的代码主要是概念

答案 2 :(得分:0)

是的,可以有一个包含多个活动的片段。 但是您需要使用LayoutParams使用java对布局进行编程,并将它们嵌入到每个片段实例中。

在每个活动中,您需要调用此片段 使用Java创建UI组件,从Java类(即您的活动)动态添加到布局中。

如果你不熟悉Java,我会建议这种方法不易维护。你需要忘记这种方法的XML,因为根本不会有任何内容,所有内容都只用Java类完成。

答案 3 :(得分:0)

generic_error_msg_fragment.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/White" >

    <TextView
        android:id="@+id/error_message_textview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:gravity="center"
        android:textColor="@android:color/darker_gray"
        android:textSize="@dimen/font_size_16sp" />


        <Button
            android:id="@+id/error_button_handler"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
             android:layout_alignParentBottom="true"
            android:layout_gravity="left|center_vertical"
            android:textSize="@dimen/font_size_16sp"
             />

</RelativeLayout>

GenericErrorFragment.Java

public class GenericErrorFragment extends Fragment{


    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
    }

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




    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {


        View genericView = inflater.inflate(R.layout.generic_error_msg_fragment, null);
        TextView errorText = (TextView) genericView.findViewById(R.id.error_message_textview);

        errorText.setText("error msg" );

        Button errorbutton = (Button) genericView.findViewById(R.id.error_button_handler);

        errorbutton.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // your logic launch some other activity

            }
        });
        return genericView;
    }

}

您可以在任何活动中加载此片段,并可以定义错误和按钮处理程序的自定义文本