我是 android 新手并尝试移植 iOS 应用程序。不幸的是,我在让我的基本设置正常工作时遇到了一些麻烦。
我正在尝试实现与本教程类似的导航: 教程
它或多或少是一个简单的 TabHost 包含多个选项卡,但不是使用
tabHost.addTab(tabHost.newTabSpec("settings").setIndicator("settings").setContent(R.id.tab1));
就像在教程中一样,我想用这样的类来初始化我的标签:
tabHost.addTab(tabHost.newTabSpec("settings").setIndicator("settings").setContent(new Intent(this, SettingsActivity.class)));
不幸的是,当我单击“设置选项卡”时,应用程序崩溃了。
到目前为止,这是我的代码:
MainActivity:
package xxx;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.widget.TabHost;
import android.widget.TabHost.OnTabChangeListener;
public class MainActivity extends Activity implements OnTabChangeListener
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initTabs();
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
private void initTabs()
{
TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);
tabHost.setup();
tabHost.addTab(tabHost.newTabSpec("Übersicht").setIndicator("Übersicht").setContent(R.id.tab1)); // <- is working fine
tabHost.addTab(tabHost.newTabSpec("Einstellungen").setIndicator("Einstellungen").setContent(new Intent(this, SettingsActivity.class))); <- crash
tabHost.setOnTabChangedListener(this);
tabHost.setCurrentTab(0);
}
@Override
public void onTabChanged(String tabId)
{
// TODO Auto-generated method stub
}
}
活动主.xml:
<RelativeLayout xmlns:android=
xmlns:tools=""
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" >
<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" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/tab1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</RelativeLayout>
设置活动:
package xxx;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class SettingsActivity extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("This is tab 2");
setContentView(tv);
}
}
来自 LogCat 的错误消息:
10-15 03:52:22.711: W/dalvikvm(889): threadid=1: 线程退出未捕获异常 (group=0x41465700) 10-15 03:52:22.851: E/AndroidRuntime(889): 致命异常: main 10-15 03:52:22.851: E/AndroidRuntime(889): java.lang.IllegalStateException: 你忘记调用'public void setup(LocalActivityManager activityGroup)'了吗?10-15 03:52:22.851: E/AndroidRuntime(889): 在 android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:747) 10-15 03:52:22.851: E/AndroidRuntime(889): 在android.widget.TabHost.setCurrentTab(TabHost.java:413) 10-15 03:52:22.851: E/AndroidRuntime(889): 在 android.widget.TabHost$2.onTabSelectionChanged(TabHost.java:154) 10-15 03 :52:22.851: E/AndroidRuntime(889): 在 android.widget.TabWidget$TabClickListener.onClick(TabWidget.java:546) 10-15 03:52:22.851:
我认为问题在于,我的 MainActivity 没有从 ActivityGroup 扩展和/或我没有使用 LocalActivityManager。问题是,两者都已弃用。在不使用已弃用的方法和类的情况下,我必须进行哪些更改才能使其正常工作?
很抱歉这个可能很简单的问题,但我通过谷歌一无所获,而且我是 android 编程的新手 :)。