如何在片段Java文件中添加功能以共享我在家庭片段中创建的按钮?

时间:2018-08-28 13:50:00

标签: android android-layout android-fragments android-fragmentactivity

我在home_fragment.xml中添加了一个浮动共享按钮。但是我不知道从哪里开始如何为该共享按钮添加功能。请帮忙。

这是片段java文件的代码,我曾尝试进行编码,但失败了,如果有人可以帮助,我将感到非常高兴。

public class HomeFragment extends Fragment {
    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_home, null);
    }
}

3 个答案:

答案 0 :(得分:1)

单击按钮时,可以使用View.OnClickListener调用回调方法。有关更多信息,请参见https://developer.android.com/reference/android/view/View.OnClickListener

就像@kAliert已经回答一样,您必须首先获取View的实例,并且有很多类似的问题和答案可能会有所帮助。

对于任何样式或语法错误,提前致歉

以下是如何在片段中执行此操作的示例:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View homeFragmentView= inflater.inflate(R.layout.fragment_home, container, false);

    FloatingActionButton animationDetailShare= homeFragmentView.findViewById(R.id.animation_detail_share);

    btnCamera.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            //The logic for the button
        }
    });

    return homeFragmentView;
}

答案 1 :(得分:0)

获取视图的实例并找到按钮。这并不难,我想它已经回答了很多次。

答案 2 :(得分:0)

public class HomeFragment extends Fragment {
            Button share_bt;

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView= inflater.inflate(fragment_home, container, false);

        FloatingActionButton share_bt= rootView.findViewById(R.id.share_bt);
        share_bt.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {

                Intent myIntent = new Intent(Intent.ACTION_SEND);
                myIntent.setType("text/plain");
                String shareBody = "hu" ;
                String shareSub = "mk";
                myIntent.putExtra(Intent.EXTRA_SUBJECT,shareBody);
                myIntent.putExtra(Intent.EXTRA_TEXT,shareSub);
                startActivity(Intent.createChooser(myIntent, "Share Using"));
            }
        });
        return rootView;
    }
}