I get "you must specify a way to create a tab indicator" (according to logcat). Unable to find a reason.
Main class:
package org.tatvamoksh.tml;
import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Window;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;
@SuppressWarnings({ "deprecation" })
public class MainActivity extends TabActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
TabHost tabHost = getTabHost();
TabSpec t = tabHost.newTabSpec("Tatva");
t.setIndicator("Tatva");
Intent tatvaIntent = new Intent(this, TatvaActivity.class);
t.setContent(tatvaIntent);
TabSpec m = tabHost.newTabSpec("Moksh");
m.setIndicator("Moksh");
Intent mokshIntent = new Intent(this, MokshActivity.class);
m.setContent(mokshIntent);
TabSpec u = tabHost.newTabSpec("Updates");
m.setIndicator("Updates");
Intent updatesIntent = new Intent(this, Updates.class);
m.setContent(updatesIntent);
tabHost.addTab(t);
tabHost.addTab(m);
tabHost.addTab(u);
}
}
layout file:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TabHost
android:id="@android:id/tabhost"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</FrameLayout>
</LinearLayout>
</TabHost>
</RelativeLayout>
Commenting on the following code, it fixes it.
//Tab for Updates
TabSpec u = tabHost.newTabSpec("Updates");
m.setIndicator("Updates");
Intent updatesIntent = new Intent(this, Updates.class);
m.setContent(updatesIntent);
I can not guess the exact problem. I would be grateful for any guidance.
source
share