Значок вкладки не отображается.

Я пытаюсь сделать простое приложение для вкладок в Android с двумя вкладками. Моя проблема в том, что когда я помещаю этот код, на вкладке отображается только текст, но не значки. Если я помещаю текст в "", отображается значок.

Кто-нибудь может мне помочь? Моя версия андроида 4.0.3.

Большое спасибо.

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

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/tabhost"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent" >
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

     <TabWidget android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@android:id/tabs" />

     <FrameLayout android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@android:id/tabcontent" >

        <LinearLayout android:id="@+id/tab1"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
            <TextView android:id="@+id/textView1"
                android:text="Contenido Tab 1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>

        <LinearLayout android:id="@+id/tab2"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
            <TextView android:id="@+id/textView2"
                android:text="Contenido Tab 2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>

     </FrameLayout>
</LinearLayout>
</TabHost>

и код активности

public class TabTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Resources res = getResources();

    TabHost tabs=(TabHost)findViewById(R.id.tabhost);
    tabs.setup();

    TabHost.TabSpec spec=tabs.newTabSpec("mitab1");
    spec.setContent(R.id.tab1);
    spec.setIndicator("sss",
            res.getDrawable(android.R.drawable.ic_btn_speak_now));
    tabs.addTab(spec);

    spec=tabs.newTabSpec("mitab2");
    spec.setContent(R.id.tab2);
    spec.setIndicator("TAB2",
            res.getDrawable(android.R.drawable.ic_dialog_map));
    tabs.addTab(spec);



    tabs.setCurrentTab(0);
}

, как видите, очень прост. Но когда я пишу spec.setIndicator("", res.getDrawable(android.R.drawable.ic_dialog_map)); Я вижу значок, но когда я пишу spec.setIndicator("TAB2", res.getDrawable(android.R.drawable.ic_dialog_map)); Я вижу только TAB2, но не оба.

Кажется, что нет достаточно места, чтобы показать оба. Итак, я попытался увеличить высоту вкладки с помощью

tabs.getTabWidget().getChildAt(1).getLayoutParams().height = 150; 

, но, похоже, это не сработало.

8
задан sunadorer 8 July 2012 в 02:30
поделиться