2015-08-03 69 views
1

我已經創建了3個標籤。 但是,當我切換標籤之間的選項卡指標的高度是非常小的,它像一個細線tabs.I沒有看到任何職位,讓我解決這個問題。所有這些都是關於如何改變顏色標籤指示器。如何增加標籤指標的高度

protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    requestWindowFeature(Window.FEATURE_ACTION_BAR); 
    try { 

     setContentView(R.layout.activity_main); 
     ActionBar bar = getActionBar(); 

     Log.d("In Tab Activity", bar.toString()); 
     bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); 
     Tab tab1 = bar.newTab(); 
     tab1.setText("Contacts"); 
     tab1.setTabListener(this); 
     bar.addTab(tab1); 




     Tab tab2 = bar.newTab(); 
     tab2.setText("Messages"); 
     tab2.setCustomView(TabUtils.renderTabView(this, R.string.tab_invitations, R.drawable.ic_add_alert_black_24dp, 5)); 
     tab2.setTabListener(this); 
     bar.addTab(tab2); 


     Tab tab3 = bar.newTab(); 
     tab3.setText("History"); 
     tab3.setTabListener(this); 
     bar.addTab(tab3); 

     webView = (WebView) findViewById(R.id.webPage); 
     jSInterface = new AndroidJSInterface(this); 
     webView.addJavascriptInterface(jSInterface, "AndroidJSInterface"); 

     webView.loadUrl("file:///android_asset/HybridPage2.html", null); 

     /* 
     * Fragment main = new MainFragment(); FragmentTransaction ft = 
     * getFragmentManager().beginTransaction(); 
     * ft.replace(R.id.content_frame, main); 
     * ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE); 
     * ft.addToBackStack(null); ft.commit(); 
     */ 
    } catch (Exception e) { 
     Log.d("Exception is", e.getMessage()); 
    } 
} 
+0

你可以顯示你的代碼或圖像或東西嗎? –

+0

顯示您的標籤欄實施代碼 –

+0

我已編輯我的帖子。 – Loren

回答

0

使用新的設計庫並引用下面的代碼。您可以更改TabLayout寬度以更改TAB的高度。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/tab_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="@color/accent_material_light" /> 

    <android.support.design.widget.TabLayout 
     android:id="@+id/tablayout" 
     android:layout_width="match_parent" 
     android:background="@color/accent_material_dark" 
     android:layout_height="200dp" /> 

</android.support.design.widget.AppBarLayout> 

+0

我不想更改Tab的高度。當我們點擊標籤時,我想改變TAB INDICATOR的高度。 – Loren

1

您可以在TabLayout下XML文件指定由app:tabIndicatorHeight=".."標籤指示的高度。