1

私は学習目的で簡単なタブホストデモを作成しましたが、それを正常に作成して実行しましたが、私の問題は、セレクターで述べたようにドローアブルに入れた画像が来るはずですが、機能していません..画像を表示していません. ..!私のコードは: main.java

package com.example.tabhostdemo;

import android.os.Bundle;
import android.app.Activity;
import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.view.Menu;
import android.widget.TabHost;


public class TabHostActivity extends TabActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_tab_host);
         Resources res = getResources(); // Resource object to get Drawables
         TabHost tabHost = getTabHost(); // The activity TabHost
         TabHost.TabSpec spec; // Reusable TabSpec for each tab
         Intent intent; // Reusable Intent for each tab

         // Create an Intent to launch an Activity for the tab (to be reused)
         intent = new Intent().setClass(this, HomeActivity.class);
         spec = tabHost.newTabSpec("home")
         .setIndicator("HOME", res.getDrawable(R.drawable.home))
         .setContent(intent);
         tabHost.addTab(spec);

         // Do the same for the other tabs

         intent = new Intent().setClass(this, AboutActivity.class);
         spec = tabHost.newTabSpec("about")
         .setIndicator("ABOUT", res.getDrawable(R.drawable.about))
         .setContent(intent);
         tabHost.addTab(spec);


         intent = new Intent().setClass(this, ContactActivity.class);
         spec = tabHost
         .newTabSpec("contact")
         .setIndicator("CONTACT",
         res.getDrawable(R.drawable.contact))
         .setContent(intent);
         tabHost.addTab(spec);

         //set tab which one you want open first time 0 or 1 or 2
         tabHost.setCurrentTab(0);


         }

         }

セレクター * home.xml *

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected -->
    <item android:drawable="@drawable/home1"
          android:state_selected="true" />
    <!-- When not selected-->
    <item android:drawable="@drawable/home2" />
</selector>

コンタクト

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected -->
    <item android:drawable="@drawable/contact1"
          android:state_selected="true" />
    <!-- When not selected-->
    <item android:drawable="@drawable/contact2" />
</selector>

about.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected -->
    <item android:drawable="@drawable/about1"
          android:state_selected="true" />
    <!-- When not selected-->
    <item android:drawable="@drawable/about2" />
</selector>
4

1 に答える 1