public class Advertisment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_advertisment, container, false);
if(Build.VERSION.SDK_INT< Build.VERSION_CODES.LOLLIPOP){
FloatingActionButton fab=(FloatingActionButton)v.findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View arg){
Intent myIntent = new Intent(getActivity(), WriteAdvert.class);
startActivity(myIntent);
}
});
}
}
ライブラリhttps://github.com/shell-software/fabを使用します
このボタンは別のアクティビティに移動する必要がありますが、そうではありません。私は初心者です!