在Android中将图像添加到选项卡

时间:2013-07-23 10:01:57

标签: android android-tabhost android-image

我开发了一个简单的Android应用程序,其中我使用Fragments实现了标签...但我无法显示标签的图像..我已经附上了以下源代码..请让我知道是什么错误...

我的Activity类TabDemoFragmentActivity.java

    public class TabDemoFragmentActivity extends FragmentActivity {

    /**
     * Instance variable of type {@link FragmentTabHost} 
     */
    private FragmentTabHost fragmentTabHost;

    /**
     * This is a call back method, which gets invoked 
     * when the instance of this class is created. 
     * 
     * <p>  
     *      This method is used to set the tab host and 
     *      add the tab host fragments to the screen, 
     *      which acts as a UI.
     * </P>
     */
    @Override
    protected void onCreate(Bundle bundle) {

        super.onCreate(bundle);

        setContentView(R.layout.activity_fragment_main);

        fragmentTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
        fragmentTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

        fragmentTabHost.addTab(fragmentTabHost.newTabSpec("DropCall Details").setIndicator("DropCall Details",
                getResources().getDrawable(R.drawable.drop_call_image)).setContent(intent), QoSDropCallDetailsFragment.class, null);

        fragmentTabHost.addTab(fragmentTabHost.newTabSpec("Network Details").setIndicator("Network Details",
                getResources().getDrawable(R.drawable.network_details)), QoSNetworkDetailsFragment.class, null);
    }
}

我的XMl文件

<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:orientation="horizontal" />

        <FrameLayout
            android:id="@+id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="50" />

        <FrameLayout
            android:id="@+id/realtabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />
    </LinearLayout>

</android.support.v4.app.FragmentTabHost>

此处未显示图片..请告诉我如何在标签中显示图片..谢谢

1 个答案:

答案 0 :(得分:0)

我意识到这是一个老问题,但希望有人可能登陆这个页面。首先,我要指出FragmentTabHost是在您的应用中添加标签的弃用方法。 Google希望您转移到ActionTabBar以添加标签。

我对你的实施做了非常类似的工作,但我没有看到太大的不同。但是,我可以从您的代码中指出的两件事情首先,您需要确保将图像复制到所有3个可绘制文件夹。其次,删除xml中的额外Framelayout(tabcontent),因为我只有1个Framelayout而且我没有看到你在Activity类中使用另一个。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.app.FragmentTabHost 
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

   <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TabWidget
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal" />

    <FrameLayout
        android:id="@+id/tabFrameLayout"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>

</android.support.v4.app.FragmentTabHost>

以下是我的活动类的片段:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_fragment);
        mTabHost = (FragmentTabHost) findViewById(R.id.tabhost);
        mTabHost.setup(this, getSupportFragmentManager(), R.id.tabFrameLayout);

        mTabHost.addTab(
                mTabHost.newTabSpec("tab1").setIndicator("Tab 1",
                        getResources().getDrawable(R.drawable.user_card)),
                TabActivity.ListFragment.class, null);

        mTabHost.addTab(
                mTabHost.newTabSpec("tab2").setIndicator("Tab 2",
                        getResources().getDrawable(R.drawable.menu)),
                        TabActivity.ListFragments.class, null);
}