大家好,
我是安卓新手。今天,我想在我的应用程序中使用“标签”。因此,我参考了 Android 示例项目。
演示中有一些错误。首先,我创建一个 Support4Demos 并配置“构建路径”。我使用 Android 工具-> 添加支持库。然后,演示成功运行。
但是,这种方法在我自己的项目中似乎没用。
这是我的代码,
package com.example.wepay;
import com.example.wepay.R;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTabHost;
public class FragmentTabs extends FragmentActivity {
private FragmentTabHost mTabHost;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_account);
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);
mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),
FragmentStackSupport.CountingFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"),
LoaderCursorSupport.CursorLoaderListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("custom").setIndicator("Custom"),
LoaderCustomSupport.AppListFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"),
LoaderThrottleSupport.ThrottledLoaderListFragment.class, null);
}
}
这些是我的错误。
FragmentStackSupport cannot be resolved to a type.
LoaderCursorSupport cannot be resolved to a type.
LoaderCustomSupport cannot be resolved to a type.
LoaderThrottleSupport cannot be resolved to a type.
谢谢!