Android --- TabLayout 切换时,改变选项卡下字体的状态(大小、加粗、默认被选中第一个)(1)

                         @Nullable Bundle savedInstanceState) {



    view = inflater.inflate(R.layout.fragment_course_selection,container,false);

    initView();

    initData();

    initEvent();

    return view;



}



public void initView() {

    course_tab = view.findViewById(R.id.course_tab);

    course_viewpager = view.findViewById(R.id.course_viewpager);

}



public void initData() {

    // 添加选项卡

    FragmentPagerAdapter adapter;

    fragments.add(new PrimaryFragment1());

    fragments.add(new PrimaryFragment2());

    // 设置选项卡文字

    tabText[0] = "小学";

    tabText[1] = "初中";

    // 设置适配器

    adapter = new SelectCourseAdapter(getChildFragmentManager(),fragments, tabText);

    course_viewpager.setAdapter(adapter);

    course_tab.setupWithViewPager(course_viewpager);



    // 给选项卡添加自定义 View

    for (int i = 0; i < course_tab.getTabCount(); i++) {

        TabLayout.Tab tab = course_tab.getTabAt(i);

        if (tab != null) {

            tab.setCustomView(getTabView(i));

        }

    }



    // 设置默认第一个被选中、加粗

    View view = course_tab.getTabAt(0).getCustomView();

    if (null != view && view instanceof TextView) {

        ((TextView) view).setTextSize(19);

        ((TextView) view).setTypeface(Typeface.DEFAULT_BOLD);

    }



}



// 自定义 Tab 的 View

private View getTabView(int currentPosition) {

    View view = LayoutInflater.from(getContext()).inflate(R.layout.tablayout_item, null);

    TextView textView = view.findViewById(R.id.tab_item_textView);

    textView.setText(tabText[currentPosition]);

    return view;

}



public void initEvent() {

    //监听事件

    course_tab.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {

        @Override

        public void onTabSelected(TabLayout.Tab tab) {

            //选中 tab 的逻辑

            course_viewpager.setCurrentItem(tab.getPosition());

            View view = tab.getCustomView();

            if (null != view && view instanceof TextView) {

                ((TextView) view).setTextSize(19);

                ((TextView) view).setTypeface(Typeface.DEFAULT_BOLD); // 加粗

            }

        }



        @Override

        public void onTabUnselected(TabLayout.Tab tab) {

            //未选中 tab 的逻辑

            View view = tab.getCustomView();

            if (null != view && view instanceof TextView) {

                ((TextView) view).setTextSize(14);

            }

        }

        @Override

        public void onTabReselected(TabLayout.Tab tab) {

            //再次选中 tab 的逻辑

        }

    });

}

}




### [](https://docs.qq.com/doc/DSkNLaERkbnFoS0ZF)3.选项卡适配器 `SelectCourseAdapter`



// 控制有几个类型的栏目

public class SelectCourseAdapter extends FragmentPagerAdapter {

private List<Fragment> list;

private String[] titles;

private Context context;



public SelectCourseAdapter(FragmentManager mFragmentManager, List fragmentList, String[] title) {

    super(mFragmentManager);

    list = fragmentList;

    titles=title;

}



@Override

public Fragment getItem(int i) {

    Fragment fragment = null;

    if (i < list.size()) {

        fragment = list.get(i);

    } else {

        fragment = list.get(0);

    }

    return fragment;

}



@Override

public int getCount() {

    return list.size();

}



@Override

public CharSequence getPageTitle(int position) {

    if (titles != null && titles.length > 0)

        return titles[position];

    return null;

}

}




### [](https://docs.qq.com/doc/DSkNLaERkbnFoS0ZF)4.自定义选项卡字体样式 View 布局 `tablayout_item.xml`



<?xml version="1.0" encoding="utf-8"?>

<TextView xmlns:android=“http://schemas.android.com/apk/res/android”

android:id="@+id/tab_item_textView"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:typeface="sans">



### [](https://docs.qq.com/doc/DSkNLaERkbnFoS0ZF)5.ViewPager 内容类 `PrimaryFragment1`



public class PrimaryFragment1 extends Fragment {

private View view;

@Nullable

@Override

public View onCreateView(@NonNull LayoutInflater inflater,

                         @Nullable ViewGroup container,

                         @Nullable Bundle savedInstanceState) {



    view = inflater.inflate(R.layout.fragment_primary1, container, false);

    return view;

}

}




对应布局文件:



<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".activity.MainActivity">

<TextView

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:text="小学"

    android:gravity="center">

</TextView>



### [](https://docs.qq.com/doc/DSkNLaERkbnFoS0ZF)6.ViewPager 内容类 `PrimaryFragment2`



public class PrimaryFragment2 extends Fragment {

private View view;



@Nullable

@Override

public View onCreateView(@NonNull LayoutInflater inflater,

                         @Nullable ViewGroup container,

                         @Nullable Bundle savedInstanceState) {



    view = inflater.inflate(R.layout.fragment_primary2,container,false);

    return view;

}

}




对应布局文件:



<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".activity.MainActivity">

<TextView

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:text="初中"

    android:gravity="center">

</TextView>
1. 改变字体大小 可以通过在 `onCheckedChanged` 方法中设置 `TextView` 的字体大小来实现。具体步骤如下: 1. 在布局文件中添加一个 `RadioButton` 和一个 `TextView`。 ```xml <RadioGroup android:id="@+id/radio_group" android:layout_width="match_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/radio_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RadioButton"/> </RadioGroup> <TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Hello World!"/> ``` 2. 在 Activity 中获取 `RadioButton` 和 `TextView` 的实例,并设置 `onCheckedChangeListener`。 ```java RadioButton radioButton = findViewById(R.id.radio_button); TextView textView = findViewById(R.id.text_view); radioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { textView.setTextSize(24); } else { textView.setTextSize(16); } } }); ``` 当 `RadioButton` 被选中,设置 `TextView` 的字体大小为 24sp;当 `RadioButton` 没有被选中,设置 `TextView` 的字体大小为 16sp。 2. 改变字体颜色 可以通过在 `onCheckedChanged` 方法中设置 `TextView` 的字体颜色来实现。具体步骤如下: 1. 在布局文件中添加一个 `RadioButton` 和一个 `TextView`。 ```xml <RadioGroup android:id="@+id/radio_group" android:layout_width="match_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/radio_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RadioButton"/> </RadioGroup> <TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Hello World!"/> ``` 2. 在 Activity 中获取 `RadioButton` 和 `TextView` 的实例,并设置 `onCheckedChangeListener`。 ```java RadioButton radioButton = findViewById(R.id.radio_button); TextView textView = findViewById(R.id.text_view); radioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { textView.setTextColor(Color.RED); } else { textView.setTextColor(Color.BLACK); } } }); ``` 当 `RadioButton` 被选中,设置 `TextView` 的字体颜色为红色;当 `RadioButton` 没有被选中,设置 `TextView` 的字体颜色为黑色。 3. 改变字体加粗 可以通过在 `onCheckedChanged` 方法中设置 `TextView` 的字体样式来实现。具体步骤如下: 1. 在布局文件中添加一个 `RadioButton` 和一个 `TextView`。 ```xml <RadioGroup android:id="@+id/radio_group" android:layout_width="match_parent" android:layout_height="wrap_content"> <RadioButton android:id="@+id/radio_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RadioButton"/> </RadioGroup> <TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Hello World!"/> ``` 2. 在 Activity 中获取 `RadioButton` 和 `TextView` 的实例,并设置 `onCheckedChangeListener`。 ```java RadioButton radioButton = findViewById(R.id.radio_button); TextView textView = findViewById(R.id.text_view); radioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD)); } else { textView.setTypeface(Typeface.defaultFromStyle(Typeface.NORMAL)); } } }); ``` 当 `RadioButton` 被选中,设置 `TextView` 的字体样式为加粗;当 `RadioButton` 没有被选中,设置 `TextView` 的字体样式为正常。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值