I recently developed an app, which has swipeable tabs, I have taken the tabs text in my java code, I want to increase the size of the tabs text, how can it be done..
The following is the sample code,
  private ViewPager viewPager;
    private TabsPagerAdapter mAdapter;
    private ActionBar actionBar;
    // Tab titles
    private String[] tabs = { "मुख्य समाचार", "स्टेट", "दुनिया" ,"राष्ट्रीय" ,"खेल" ,"व्यापार" ,"मनोरंजन" ,"स्वास्थ्य" ,"लाइफस्टाइल" ,"क्रिकेट" ,"ऐशिया" ,"अमेरिका" , "फ़ुटबॉल" , "मध्य प्रदेश", "छत्तीसगढ़" , "महाराष्ट्र" , "गोवा" , "उत्तर प्रदेश"};
    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    @SuppressLint("NewApi")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        getActionBar().setDisplayHomeAsUpEnabled(true);
            getActionBar().setHomeButtonEnabled(true);
         ..........
         .............