I am developing an Android application. I need to use Scroll through tabbed views . I want to add a drawn image ( non_click image ), when the tabs are loading and click the tab, another image of the same tab ( click_state image ) will appear. Please find below code I used.please help me do this
package com.example.creatingswipeviewswithtabs; import android.os.Bundle; import android.app.ActionBar; import android.app.ActionBar.Tab; import android.app.ActionBar.TabListener; import android.app.Activity; import android.app.FragmentTransaction; import android.view.Menu; public class MainActivity extends Activity implements TabListener { ActionBar action_bar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); action_bar=getActionBar();
source share