我真的卡在這個錯誤(如下圖):無法解析方法placeholderfragment錯誤
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_vehiclerecall);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
}
我有正確引用到XML佈局(下圖)的容器:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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"
android:id="@+id/container"
tools:context="com.customerautomotivenetwork.VehicleRecall"/>
,但我一直無法解決PlacehlderFragment方法的錯誤,對我在做什麼錯誤的任何想法?
你可以發佈堆棧跟蹤嗎? – 2014-09-19 13:27:23
這是我得到使用堆棧跟蹤:<?XML版本= 「1.0」 編碼= 「UTF-8」> <的FrameLayout 的xmlns:機器人=「http://schemas.android.com/apk/res/android 「 xmlns:tools =」http://schemas.android.com/tools「 android:layout_width =」match_parent「 android:layout_height =」match_parent「 android:id =」@ + id/container「 tools:忽略=「MergeRootFrame」 工具:上下文=「com.customerautomotivenetwork.VehicleRecall」 /> – 2014-09-19 14:51:28
堆棧跟蹤基本上是錯誤消息時應用崩潰,而不是XML佈局。它顯示了線程終止之前堆棧上所有方法調用的蹤跡。你可以在Eclipse的logcat窗口中找到它。 – 2014-09-19 15:12:43