"Activity not found" 在 Android
"Activity not found" in Android
我正在使用 eclipse 中的 navigation-drawer
模板来做一个简单的 Android 应用程序。
我在片段方面遇到了一些麻烦。
我在清单中声明了一个名为 PresenceLog Fragment 的片段,但是当我在 MainActivity
中调用它时,日志仍然显示
03-23 13:54:50.817: E/AndroidRuntime(16750): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.singtel.ricecooker/com.singtel.ricecooker.PresenceLogFragment}; have you declared this activity in your AndroidManifest.xml?
这是我的清单
这是我的片段class
public class PresenceLogFragment extends Fragment{
private TextView myText = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.presence_log, null);
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
ArrayList<String> userList = null;
RiceServerRequest newRequest = new RiceServerRequest();
//newRequest.getRequestInfo(this);
}
public void updateUserList(ArrayList<String> userList){
LinearLayout lView = (LinearLayout) getView().findViewById (R.layout.presence_log);
//LinearLayout ll = (LinearLayout)fragment.getView().findViewById(R.id.commentFragmentLayout);
for (int i = 0; i < userList.size();i++){
myText = new TextView(getActivity());
myText.setText(userList.get(i));
lView.addView(myText);
}
//setContentView(lView);
}
这是我的 MainActivity
private void launchPresenceLog(){
Intent intent = new Intent(this,PresenceLogFragment.class);
startActivity(intent);
}
如果您知道我的代码有什么问题,那就太好了。另外,由于我是 Android 编程的新手,如果您能推荐一些在线课程,我将不胜感激。
have you declared this activity in your AndroidManifest.xml?
查看您的清单,看看是否有一个 <activity>
元素注册了您的 activity。如果没有,请添加一个。
看这里:http://developer.android.com/guide/topics/manifest/activity-element.html
清楚了。
"have you declared this activity in your AndroidManifest.xml?"
你应该看看有没有标签。
see this
或 maybe this
您创建了一个片段,所以您不能像 Activity 那样调用它。
您需要用您的 Fragment 替换容器视图,正确地替换 FrameLayout。
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, new PresenceLogFragment())
.commit();
请打开清单文件并声明如下:
<activity
android:name=".MainActivity" //your activity name
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
如果这是你的作品activity那么就这样做,否则就这样做
<activity
android:name=".MainActivity"//your activity name
android:label="@string/app_name" >
</activity>
键入 java 扩展 Activity 而非 Fargment 的文件的名称。表示从 Activity java 文件创建的片段。
<activity
android:name="com.singtel.ricecooker.PresenceLogFragment"
android:label="@string/app_name" >
</activity>
如果 com.singtel.ricecooker.PresenceLogFragment 表示一个 activity 并且它是一个片段,则将其添加到您的清单文件中,那么您做错了。在第二种情况下使用下面的代码,
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, new PresenceLogFragment())
.commit();
您无法通过 Intent 加载片段。您必须以这种方式使用片段管理器来完成它:
Fragment fragment = new PresenceLogFragment(MainActivity.this);
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction ft = fragmentManager.beginTransaction();
ft.replace(R.id.yourFragmentContainer, fragment).commit();
您正在尝试将片段用作 activity。
您可以将 PresenceLogFragment 重命名为 PresenceLogActivity 并让它扩展 Activity 而不是 Fragment 或者您可以尝试将您的片段用作片段。
此外,您尝试在应用中使用的任何 activity 都需要在清单中声明 (link)
有关片段及其使用方法的更多信息here
Navigation.findNavController(view).navigate(R.id.youAc)
我正在使用 eclipse 中的 navigation-drawer
模板来做一个简单的 Android 应用程序。
我在片段方面遇到了一些麻烦。
我在清单中声明了一个名为 PresenceLog Fragment 的片段,但是当我在 MainActivity
中调用它时,日志仍然显示
03-23 13:54:50.817: E/AndroidRuntime(16750): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.singtel.ricecooker/com.singtel.ricecooker.PresenceLogFragment}; have you declared this activity in your AndroidManifest.xml?
这是我的清单
这是我的片段class
public class PresenceLogFragment extends Fragment{
private TextView myText = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.presence_log, null);
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
ArrayList<String> userList = null;
RiceServerRequest newRequest = new RiceServerRequest();
//newRequest.getRequestInfo(this);
}
public void updateUserList(ArrayList<String> userList){
LinearLayout lView = (LinearLayout) getView().findViewById (R.layout.presence_log);
//LinearLayout ll = (LinearLayout)fragment.getView().findViewById(R.id.commentFragmentLayout);
for (int i = 0; i < userList.size();i++){
myText = new TextView(getActivity());
myText.setText(userList.get(i));
lView.addView(myText);
}
//setContentView(lView);
}
这是我的 MainActivity
private void launchPresenceLog(){
Intent intent = new Intent(this,PresenceLogFragment.class);
startActivity(intent);
}
如果您知道我的代码有什么问题,那就太好了。另外,由于我是 Android 编程的新手,如果您能推荐一些在线课程,我将不胜感激。
have you declared this activity in your AndroidManifest.xml?
查看您的清单,看看是否有一个 <activity>
元素注册了您的 activity。如果没有,请添加一个。
看这里:http://developer.android.com/guide/topics/manifest/activity-element.html
清楚了。
"have you declared this activity in your AndroidManifest.xml?"
你应该看看有没有标签。
see this 或 maybe this
您创建了一个片段,所以您不能像 Activity 那样调用它。 您需要用您的 Fragment 替换容器视图,正确地替换 FrameLayout。
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, new PresenceLogFragment())
.commit();
请打开清单文件并声明如下:
<activity
android:name=".MainActivity" //your activity name
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
如果这是你的作品activity那么就这样做,否则就这样做
<activity
android:name=".MainActivity"//your activity name
android:label="@string/app_name" >
</activity>
键入 java 扩展 Activity 而非 Fargment 的文件的名称。表示从 Activity java 文件创建的片段。
<activity
android:name="com.singtel.ricecooker.PresenceLogFragment"
android:label="@string/app_name" >
</activity>
如果 com.singtel.ricecooker.PresenceLogFragment 表示一个 activity 并且它是一个片段,则将其添加到您的清单文件中,那么您做错了。在第二种情况下使用下面的代码,
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, new PresenceLogFragment())
.commit();
您无法通过 Intent 加载片段。您必须以这种方式使用片段管理器来完成它:
Fragment fragment = new PresenceLogFragment(MainActivity.this);
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction ft = fragmentManager.beginTransaction();
ft.replace(R.id.yourFragmentContainer, fragment).commit();
您正在尝试将片段用作 activity。 您可以将 PresenceLogFragment 重命名为 PresenceLogActivity 并让它扩展 Activity 而不是 Fragment 或者您可以尝试将您的片段用作片段。
此外,您尝试在应用中使用的任何 activity 都需要在清单中声明 (link)
有关片段及其使用方法的更多信息here
Navigation.findNavController(view).navigate(R.id.youAc)