- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
由于未找到类异常,我收到无法实例化 fragment 错误。以前这段代码工作得很好,我不知道发生了什么变化,我已经尝试解决这个问题几个小时了。
package com.whatshappening;
// A bunch of imports
public class AddEvents extends Fragment implements
GooglePlayServicesClient.ConnectionCallbacks,
GooglePlayServicesClient.OnConnectionFailedListener, AsyncResponse, locationChangeListner {
// Class Variables
private ProgressDialog pd;
private LocationClient mLocationClient;
private FragmentActivity myContext;
private String resultString;
public String LatLng = null;
public EditText locationAddress = null;
public Double Lat = null;
public Double Lng = null;
public Double lat = null;
public Double lng = null;
// Constructor is empty and public
public AddEvents(){
}
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.add_events, container, false);
locationAddress = (EditText) rootView.findViewById(R.id.tLocation);
mLocationClient = new LocationClient(getActivity(), this, this);
rootView.findViewById(R.id.locButton).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
pd = ProgressDialog.show(getActivity(), "",
"Finding you!!!", false);
getAddress(v);
}
});
rootView.findViewById(R.id.shButton).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
if ((Lat != null) && (Lng != null)) {
Toast.makeText(getActivity(),
LatLng, Toast.LENGTH_SHORT).show();
locationChange(Lat,Lng);
} else {
Toast.makeText(getActivity(),
"No location was found", Toast.LENGTH_SHORT).show();
}
}
});
return rootView;
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
}
// Class is much Larger but I don't think that's the issue.
}
package com.whatshappening;
//Bunch of imports
public class MainActivity extends ActionBarActivity implements
ActionBar.TabListener {
/**
* The {@link android.support.v4.view.PagerAdapter} that will provide
* fragments for each of the sections. We use a {@link FragmentPagerAdapter}
* derivative, which will keep every loaded fragment in memory. If this
* becomes too memory intensive, it may be best to switch to a
* {@link android.support.v4.app.FragmentStatePagerAdapter}.
*/
SectionsPagerAdapter mSectionsPagerAdapter;
/**
* The {@link ViewPager} that will host the section contents.
*/
ViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Set up the action bar.
final ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
// Set up date in Action Bar
String dateString = (String) DateFormat.format("MM-dd-yyyy",
new java.util.Date());
actionBar.setSubtitle(dateString);
// Create the adapter that will return a fragment for each of the three
// primary sections of the activity.
mSectionsPagerAdapter = new SectionsPagerAdapter(
getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
// When swiping between different sections, select the corresponding
// tab. We can also use ActionBar.Tab#select() to do this if we have
// a reference to the Tab.
mViewPager
.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
actionBar.setSelectedNavigationItem(position);
}
});
// For each of the sections in the app, add a tab to the action bar.
for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
// Create a tab with text corresponding to the page title defined by
// the adapter. Also specify this Activity object, which implements
// the TabListener interface, as the callback (listener) for when
// this tab is selected.
actionBar.addTab(actionBar.newTab()
.setText(mSectionsPagerAdapter.getPageTitle(i))
.setTabListener(this));
}
}
@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;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onTabSelected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
// When the given tab is selected, switch to the corresponding page in
// the ViewPager.
mViewPager.setCurrentItem(tab.getPosition());
}
@Override
public void onTabUnselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
@Override
public void onTabReselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
/**
* A {@link FragmentPagerAdapter} that returns a fragment corresponding to
* one of the sections/tabs/pages.
*/
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public android.support.v4.app.Fragment getItem(int position) {
switch (position) {
case (0):
return new AddEvents();
case (1):
return new EventMap();
}
return null;
}
@Override
public int getCount() {
// Show 2 total pages.
return 2;
}
@Override
public CharSequence getPageTitle(int position) {
Locale l = Locale.getDefault();
switch (position) {
case 0:
return getString(R.string.title_section1).toUpperCase(l);
case 1:
return getString(R.string.title_section2).toUpperCase(l);
}
return null;
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.whatshappening"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended.
-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCO5Wb1Ow2W3Wq0mB64OFIPwTvGLbCRS9k" />
<activity
android:name="com.whatshappening.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
07-19 19:46:15.880: E/AndroidRuntime(29720): Caused by: android.app.Fragment$InstantiationException: Unable to instantiate fragment com.example.fragment.AddEvents: make sure class name exists, is public, and has an empty constructor that is public
07-19 19:46:15.880: E/AndroidRuntime(29720): at android.app.Fragment.instantiate(Fragment.java:597)
07-19 19:46:15.880: E/AndroidRuntime(29720): at android.app.Fragment.instantiate(Fragment.java:561)
07-19 19:46:15.880: E/AndroidRuntime(29720): at android.app.Activity.onCreateView(Activity.java:4964)
07-19 19:46:15.880: E/AndroidRuntime(29720): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:695)
07-19 19:46:15.880: E/AndroidRuntime(29720): ... 24 more
07-19 19:46:15.880: E/AndroidRuntime(29720): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.example.fragment.AddEvents" on path: DexPathList[[zip file "/data/app/com.whatshappening-13.apk"],nativeLibraryDirectories=[/data/app-lib/com.whatshappening-13, /vendor/lib, /system/lib]]
07-19 19:46:15.880: E/AndroidRuntime(29720): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:67)
07-19 19:46:15.880: E/AndroidRuntime(29720): at java.lang.ClassLoader.loadClass(ClassLoader.java:497)
07-19 19:46:15.880: E/AndroidRuntime(29720): at java.lang.ClassLoader.loadClass(ClassLoader.java:457)
07-19 19:46:15.880: E/AndroidRuntime(29720): at android.app.Fragment.instantiate(Fragment.java:583)
07-19 19:46:15.880: E/AndroidRuntime(29720): ... 27 more
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/beaver"
android:orientation="vertical" >
<TextView
android:id="@+id/tVName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="30dp"
android:text="Event Name:"
android:textColor="@android:color/white"
android:textSize="22sp" />
<Button
android:id="@+id/locButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/tLocation"
android:layout_alignBottom="@+id/tLocation"
android:layout_alignParentRight="true"
android:text="Get Location"
android:textColor="#ffffff" />
<EditText
android:id="@+id/tLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tVLocation"
android:layout_marginTop="25dp"
android:layout_toLeftOf="@+id/locButton"
android:ems="10"
android:textColor="@android:color/white" />
<EditText
android:id="@+id/tTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tVTime"
android:layout_below="@+id/tVTime"
android:layout_marginTop="22dp"
android:ems="10"
android:inputType="textMultiLine|date"
android:textColor="@android:color/white" />
<TextView
android:id="@+id/tVDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/tDescription"
android:layout_alignLeft="@+id/tTime"
android:layout_marginBottom="18dp"
android:text="Description:"
android:textColor="@android:color/white"
android:textSize="22sp" />
<EditText
android:id="@+id/tNames"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tVLocation"
android:layout_below="@+id/tVName"
android:layout_marginTop="10dp"
android:ems="10"
android:textColor="@android:color/white" />
<EditText
android:id="@+id/tDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/shButton"
android:layout_alignLeft="@+id/tVDescription"
android:layout_marginBottom="7dp"
android:ems="10"
android:inputType="textMultiLine"
android:textColor="@android:color/white" />
<TextView
android:id="@+id/tVTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tVLocation"
android:layout_below="@+id/locButton"
android:layout_marginTop="16dp"
android:text="Time:"
android:textColor="@android:color/white"
android:textSize="22sp" />
<TextView
android:id="@+id/tVLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tVName"
android:layout_below="@+id/tNames"
android:layout_marginTop="15dp"
android:text="Location:"
android:textColor="@android:color/white"
android:textSize="22sp" />
<Button
android:id="@+id/shButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="31dp"
android:layout_toRightOf="@+id/tDescription"
android:text="Share"
android:textColor="#ffffff" />
</RelativeLayout>
我觉得这个错误一定是非常基本的错误。但我没有对应用程序的先前“工作”版本进行任何更改。
最佳答案
Didn't find class "com.example.fragment.AddEvents"
您的 AddEvents 包名称是
package com.whatshappening;
不是
com.example.fragment
看起来布局中的某个位置有 fragment ,但包名称与 fragment 中的包名称不匹配
关于java - 通用类未找到异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24846886/
我使用 AppFuse 创建项目已经有一段时间了。我已经知道有两种方法可以开发 DAO 和 Manager 类: GenericDao/GenericManager 方法 UniversalDao/U
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
在普通的单线程程序中,捕获异常只需要通过try ... catch ... finally ...代码块就可以了。那么,在并发情况下,比如在父线程中启动了子线程,如何在父线程中捕获来自子线程的异常,
假设我有一个这样的界面 interface Example { first_name: string, last_name: string, home_town: string
我已经成为 hg 用户几年了,对此我很高兴! 我必须开始一个我以前从未做过的项目。我们的想法是开发一个具有批处理模式和 GUI 的软件。 因此,批处理模式和 GUI 模式都有共同的源,但每种模式也都包
我可以在Silverlight中使用generic.xaml来设置应用程序中所有TextBlock的样式吗? 我原以为它会起作用,但它没
顶部 map 有 3 个子 map ,每个子 map 都有不同的对象。 像下面的代码,如何将通用添加到 map 顶部? Map top = new ConcurrentHashMap();
我想创建一个hashmap,其中键是接口(interface)A,值是接口(interface)B。然后我想用实现A和B的类来初始化它。是否可以使用java泛型来做到这一点? 也就是说,我想要类似的东
Enum 位于 java.lang.Enum 中,Object 位于 java.lang.Object 中>。那么,为什么 Enum 不是 Object 呢? (我收到一个java.lang.Clas
我有一种方法,check,它有两个 HashMap 作为参数。这些映射的键是 String,值是 String 或 Arraylist。 哪个是更好的解决方案: public static boole
我启动了针对iPhone的应用程序,现在我也想将其应用程序用于iPad。当我开始做iPhone项目时,即使我添加了iPad xib,它也无法正确显示,如何转换我的项目同时适用于iPhone和iPad(
这行代码(代码1)有什么区别 auto l1 = [](auto a) { static int l = 0; std::cout operator() for type const char*) 被
使用 Generic#to,我可以获得 case class 的 HList 表示: import shapeless._ case class F(x: Int, y: String) scala>
我有一个 BiDiMap 类。如何使其通用,不仅接受 String 而且接受 Object 类型的对象作为输入参数,同时保持所有原始函数正常工作。例如,我希望能够使用函数 put() 和 Object
我在编译 foreach 循环时遇到问题。我很确定这是我的泛型处理的问题,因为该错误是对象兼容性问题。我已搜索解决方案,但找不到任何可以解决该问题的内容。 这是定义 Iterable adjList
大约有 6 个 POJO 类(域实体、DTO、DMO)都具有几乎相同的字段。为了从一个对象转换为另一个对象,我传递一个对象并调用它的 getter 将其设置到另一个对象中。 private UserT
有没有什么方法可以创建一个通用的 for 循环,它可以正确地循环遍历数组或对象?我知道我可以编写以下 for 循环,但它也会遍历将添加到数组的其他属性。 for (item in x) { co
我已经有一段时间没有写js了,显然有点生疏了。试图理解以下问题。 getCurrentPosition successCallback 中的警报正确显示纬度,但最后一行警报未定义。为什么我的 clie
请帮助我,我从来没有用 xib 为 iPhone/iPad 制作过通用的 UIViewControllers。如何使用 .m 和 .h 文件以及 _iphone.xib 和 _ipad.xib 创建类
我正在尝试创建一个 createRequest 函数,我可以将其重新用于我的所有网络调用,有些需要发布 JSON 而其他则不需要,所以我正在考虑创建一个采用可选通用对象的函数;理论上是这样的: str
我是一名优秀的程序员,十分优秀!