package com.example.skyreach;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragmet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class AboutusFragment extends Fragment {
private TextView textView;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View v= inflater.inflate(R.layout.fragment_aboutus,container,false);
textView =v.findViewById(R.id.text_about);
textView.setSelected(true);
return v;
}
}
Я пробовал это, но это не работает. Я хочу вставить код выделения в фрагмент. java файл.