Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application using Tab host activity and set the tab with pictures. While the application run on emulator the image are displayed without any problem. But it's not displayed while i run the application on mobile(Micromax mobile).

Please tell me what's the problem and How to resolve it.

Tab Host Codings:

        Intent intent = new Intent(this, WeekActivity.class);

    tabHost.addTab(tabHost
            .newTabSpec("Week")
            .setIndicator("Weekly", res.getDrawable(R.drawable.ic_tab_main))
            .setContent(intent));

    Intent intent2 = new Intent(this,ListMonthActivity.class);
    tabHost.addTab(tabHost
            .newTabSpec("Month")
            .setIndicator("Monthly", res.getDrawable(R.drawable.ic_tab_setup))
            .setContent(intent2));
    tabHost.setCurrentTab(0);

    Intent intent3 = new Intent(this, ListYearActivity.class);
    TabHost.TabSpec spec=tabHost.newTabSpec("Year").setIndicator("Yearly",getResources().getDrawable(R.drawable.ic_launcher)).setContent(intent3);
    tabHost.addTab(spec);

    /*tabHost.addTab(tabHost
            .newTabSpec("Year")
            .setIndicator("Yearly", res.getDrawable(R.drawable.ic_tab_setup))
            .setContent(intent3));
    tabHost.setCurrentTab(0);*/

    // Set tabs Colors
    tabHost.setBackgroundColor(Color.BLACK);
    tabHost.getTabWidget().setBackgroundColor(Color.BLACK);
   }

Selector tab host Xml file

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

Tabhost layout XML file:

   <?xml version="1.0" encoding="utf-8"?>
   <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android: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"
    android:padding="0dp"
    >
    <TabWidget android:id="@android:id/tabs"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        />
    <FrameLayout android:id="@android:id/tabcontent"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        />

</LinearLayout>
   </TabHost>
share|improve this question
show us some code snippet that you have used – sunil Jul 6 '12 at 7:08
Image displayed on emulator and Samsung mobile. Not in micromax mobile .This is my problem. Please anyone help me to out of this problem. – Venkatesh Jul 6 '12 at 7:35
And in micromax mobile the bottom buttons in an activity are also shrink their views . The buttons captions are not shown. – Venkatesh Jul 6 '12 at 7:40
can you share the device specs such as screen dpi, size, model etc... – sunil Jul 6 '12 at 7:49
Operating System : Android v2.1 OS 600MHz CPU Band : GSM 900&1800MHz – WCDMA 900/2100MHz Weight : 105gms Dimensions : 106.8×59.2x14mm Large 2.8-inch touchscreen display , 320×240 pixel resolution Gravity Sensors Digital compass 3G HSDPA/HSUPA WiFi Bluetooth miniUSB 150MB Internal memory – Venkatesh Jul 6 '12 at 7:57
show 2 more comments

3 Answers

up vote 2 down vote accepted

Either you have to save the images in each folder like mdpi,hdpi,ldpi with the same name or you have to just save the pictures in mdpi folder the low resolution or high dencity mobile automatically pick the images from mdpi foleder..

share|improve this answer
did you save the images with the same name – Amandeep singh Jul 6 '12 at 6:42
u don,t need to make seprate xml for each – Amandeep singh Jul 6 '12 at 6:43
yes i did save the images with the same name. – Venkatesh Jul 6 '12 at 6:54
i will suggest you not to make seprate xml file for each maybe your devise not pick the appropriate xml therefore it doesn't show u the images.Or did u try with the android default icon image if not just try with the android default icon image, – Amandeep singh Jul 6 '12 at 7:04
I tried,But the default images are also not displayed . – Venkatesh Jul 6 '12 at 7:26

Set image in the Tab Host as:

TabHost.TabSpec spec=tabHost.newTabSpec("hello").setIndicator("hello",getResources().getDrawable(R.drawable.ic_launcher)).setContent(intent);
tabHost.addTab(spec);

i just tried this in the device and its working fine.

share|improve this answer
It's not worked. Thanks for Reply. – Venkatesh Jul 6 '12 at 7:30
Pls post your code and if possible than xml file – AkashG Jul 6 '12 at 8:03

see this example you got idea @Venkatesh

http://www.mkyong.com/android/android-tablayout-example/

share|improve this answer
I had seen this example coding and i used this codings only.But problem still occur. – Venkatesh Jul 6 '12 at 7:29
are you mension images in drawable folder.. – NagarjunaReddy Jul 6 '12 at 7:37
which exceptions you faceing.. – NagarjunaReddy Jul 6 '12 at 7:38
Yes i did mention it on drawable. And i did not get any exception yet. But i want to display image on tab host for all mobile . – Venkatesh Jul 6 '12 at 7:43
same example running mt emulator it's work perfect... – NagarjunaReddy Jul 6 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.