我正在努力在 AlertDialog 或 SherlockDialogFragment 中显示缩略图大小的地图。
我的xml中有这个
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
class="com.google.android.gms.maps.MapFragment" />
只有这个在我的SherlockDialogFragment
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
getDialog().setCanceledOnTouchOutside(true);
getDialog().setTitle(offer.retailer);
View v = inflater.inflate(R.layout.businesstmpalert, container, false);
return v
}
我收到一个Error inflating class fragment
错误
我究竟做错了什么?