Good evening, I am interested in the following question: how to put a news line in the tab menu? There is a first fragment:
package com.learn2crack.loginregistration.fragments; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.learn2crack.loginregistration.R; public class OneFragment extends Fragment{ public OneFragment() { // Required empty public constructor System.out.println("любой текст"); } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return inflater.inflate(R.layout.fragment_one, container, false); } }
instead of text ONE should be a tape
Are there any examples of adding a ribbon or something else to the menu? Thank you very much, I will be glad to any answers!