0
カスタムフォントを下のコードからタイトル(「タブアイテム1」、「タブアイテム2」、「タブアイテム3」)に設定しようとしています。私はAndroid StudioやJavaにはまったく初心者で、インターネット上で行われていた種類の素材を使って学習しています。タブのタイトルにAndroidカスタムフォントを設定する
アセットフォルダに "abc.ttf"という名前のフォントがあるとします。どのようにしてタブタイトルのフォントを変更できますか?以下は私のTabFragment.java
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.widget.AppCompatTextView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class TabFragment extends Fragment {
TabLayout mTabLayout;
ViewPager mViewPager;
private static final int int_items = 3;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
/**
*Inflate tab_layout and setup Views.
*/
View x = inflater.inflate(R.layout.tabbed_layout, null);
mTabLayout = (TabLayout) x.findViewById(R.id.tabs);
mViewPager = (ViewPager) x.findViewById(R.id.viewpager);
/**
*Set an Apater for the View Pager
*/
mViewPager.setAdapter(new MyAdapter(getChildFragmentManager()));
/**
* Now , this is a workaround ,
* The setupWithViewPager dose't works without the runnable .
* Maybe a Support Library Bug .
*/
mTabLayout.post(new Runnable() {
@Override
public void run() {
mTabLayout.setupWithViewPager(mViewPager);
}
});
return x;
}
class MyAdapter extends FragmentPagerAdapter {
public MyAdapter(FragmentManager fm) {
super(fm);
}
/**
* Return fragment with respect to Position .
*/
@Override
public Fragment getItem(int position) {
switch (position) {
case 0:
return new TabOneFragment();
case 1:
return new TabTwoFragment();
case 2:
return new TabThreeFragment();
}
return null;
}
@Override
public int getCount() {
return int_items;
}
/**
* This method returns the title of the tab according to the position.
*/
@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return "Tab Item 1";
case 1:
return "Tab Item 2";
case 2:
return "Tab Item 3";
}
return null;
}
}
}
、ここで私のtabbed_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
app:tabGravity="fill"
app:tabMode="fixed"
android:background="@color/white"
app:tabIndicatorColor="@color/colorPrimary"
app:tabSelectedTextColor="@color/colorPrimary"
app:tabTextColor="@color/black"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout>
役立つことを願っていますTablayoutの ".... H私はそれを行うのですか? –
私の回答を編集しました –
まだ動作しません。私はこれを理解しようとしています。 XMLではandroid:id = "@ + id/tabs"は "tabs"を指します。 CustomTabLayout.javaでは、 "public void addTab(Tab tab)" ...最後の "tab"は "tabs"ですか?あなたのコードは正しいですか? –