いくつかのアクティビティがあり、そのうちの1つはファイルにシリアル化されるある種のオブジェクトを作成し、もう1つはデータディレクトリ内のシリアル化されたオブジェクトのリストを表示する必要があります(そしてアクティビティを開始する[新規作成]ボタンがあります新しいオブジェクトを作成します)
ディレクトリが空の場合、すべてが正常に機能し、クラッシュは発生しません。実際には、ディレクトリは空である必要はありません。表示されるはずのファイルはすべて特定の拡張子で終わり、メインアプリケーションはそれらを除外します。ファイルの拡張子を変更しても、アプリケーションはクラッシュしません。
これらのオブジェクトの1つを作成すると、オブジェクトは正しく保存されます/sdcard/data/org.my.package/files/the_object_file
が、この時点で、シリアル化されたオブジェクトのリストを表示するアクティビティを開くと、が表示されますandroid.content.res.Resources$NotFoundException
。
また、これらのアクティビティはフラグメントを使用し、例外は次のようなコードで発生することも言わなければなりません。
public class ShowObjectsActivity extends FragmentActivity {
public static final int SHOW_CREATE_OBJECT_ACTIVITY = 3;
public static final int CREATE_OBJECT = RESULT_FIRST_USER + 1;
public static final int LOAD_OBJECT = RESULT_FIRST_USER + 2;
public static final String THE_OBJECT = "org.my.package.THE_OBJECT";
private MainObjectsFragment mainFragment = null;
private String[] objectNames = null;
private ObjectSerializer serializer = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.objects);
if (mainFragment == null) {
mainFragment = new MainObjectsFragment();
// Fails on the following .add
getSupportFragmentManager().beginTransaction()
.add(R.id.objects_fragment_container, mainFragment).commit();
}
Intent intent = getIntent();
serializer = new ObjectSerializer(
intent.getStringExtra(TheMainActivity.APP_FILES_DIRECTORY));
this.objectNames = intent.getStringArrayExtra(
TheMainActivity.OBJECTS_NAMES);
if (this.objectNames == null) {
this.objectNames = new String[0];
}
}
@Override
public void onStart() {
super.onStart();
// Set the ArrayAdapter for the ListView
mainFragment.setObjectsAdapter(this,
this.objectNames);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == SHOW_CREATE_OBJECT_ACTIVITY) {
if (resultCode == RESULT_OK) {
setResult(CREATE_OBJECT, intent);
finish();
}
}
}
public void createNewObject(View view) {
Intent intent = new Intent(this, NewObjectActivity.class);
startActivityForResult(intent, SHOW_CREATE_OBJECT_ACTIVITY);
}
}
そして、objects.xml
レイアウトファイルはこれです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/objects_fragment_container"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" />
オブジェクトのリストを表示するアクティビティを起動するのメソッドはTheMainActivity
、次のようになります。
public void showObjectsActivity(View view) {
if (!isExternalStorageAvailable()) {
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setTitle(R.string.external_storage_not_available_title);
dialog.setMessage(R.string.external_storage_not_available_msg);
dialog.setNeutralButton(R.string.close, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// Empty
}
});
dialog.create().show();
} else {
Intent intent = new Intent(this, ShowObjectsActivity.class);
String app_files_directory = getTheFilesDir();
// When the file is in the directory the following is the array I'd expect.
// an array with the names of the objects
intent.putExtra(OBJECTS_NAMES,
new ObjectSerializer(
app_files_directory).listObjectNames());
intent.putExtra(APP_FILES_DIRECTORY, app_files_directory);
startActivityForResult(intent, SHOW_OBJECTS);
}
}
MainObjectsFragment
onCreateView
はnames配列に関連することは何もしないことに注意してください。また、インテントに触れる前にクラッシュがShowObjectsActivity
発生します。
トレースバックは次のとおりです。
E/AndroidRuntime( 1186): FATAL EXCEPTION: main
E/AndroidRuntime( 1186): android.content.res.Resources$NotFoundException: Resource ID #0x7f050002 type #0x12 is not valid
E/AndroidRuntime( 1186): at android.content.res.Resources.loadXmlResourceParser(Resources.java:2297)
E/AndroidRuntime( 1186): at android.content.res.Resources.getLayout(Resources.java:988)
E/AndroidRuntime( 1186): at android.view.LayoutInflater.inflate(LayoutInflater.java:349)
E/AndroidRuntime( 1186): at android.widget.ArrayAdapter.createViewFromResource(ArrayAdapter.java:363)
E/AndroidRuntime( 1186): at android.widget.ArrayAdapter.getView(ArrayAdapter.java:354)
E/AndroidRuntime( 1186): at android.widget.AbsListView.obtainView(AbsListView.java:1523)
E/AndroidRuntime( 1186): at android.widget.ListView.makeAndAddView(ListView.java:1786)
E/AndroidRuntime( 1186): at android.widget.ListView.fillDown(ListView.java:705)
E/AndroidRuntime( 1186): at android.widget.ListView.fillFromTop(ListView.java:762)
E/AndroidRuntime( 1186): at android.widget.ListView.layoutChildren(ListView.java:1639)
E/AndroidRuntime( 1186): at android.widget.AbsListView.onLayout(AbsListView.java:1318)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1285)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1161)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.onLayout(LinearLayout.java:1078)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1285)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1161)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.onLayout(LinearLayout.java:1078)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.FrameLayout.onLayout(FrameLayout.java:369)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1285)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1161)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.onLayout(LinearLayout.java:1078)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.FrameLayout.onLayout(FrameLayout.java:369)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1285)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1161)
E/AndroidRuntime( 1186): at android.widget.LinearLayout.onLayout(LinearLayout.java:1078)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.widget.FrameLayout.onLayout(FrameLayout.java:369)
E/AndroidRuntime( 1186): at android.view.View.layout(View.java:7243)
E/AndroidRuntime( 1186): at android.view.ViewRoot.performTraversals(ViewRoot.java:1181)
E/AndroidRuntime( 1186): at android.view.ViewRoot.handleMessage(ViewRoot.java:1906)
E/AndroidRuntime( 1186): at android.os.Handler.dispatchMessage(Handler.java:130)
E/AndroidRuntime( 1186): at android.os.Looper.loop(SourceFile:351)
E/AndroidRuntime( 1186): at android.app.ActivityThread.main(ActivityThread.java:4070)
E/AndroidRuntime( 1186): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1186): at java.lang.reflect.Method.invoke(Method.java:538)
E/AndroidRuntime( 1186): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:906)
E/AndroidRuntime( 1186): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:664)
E/AndroidRuntime( 1186): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 197): Force finishing activity org.my.package/.ShowObjectsActivity
W/ActivityManager( 197): Force finishing activity org.my.package/.TheMainActivity
私は何か間違ったことをしていますか?データディレクトリにファイルが存在するとResourceNotFound
エラーが発生するのはなぜですか?
編集:私はエラーがどのように発生するかを理解し始めていると思います。のMainObjectsFragment
レイアウトには。が含まれていListView
ます。ビューが空であるかどうかを示すためにを提供しTextView
ました。xmlは次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5">
<ListView
android:id="@+id/main_objects_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/no_objects_available"
android:textSize="22sp"
android:gravity="center" />
</LinearLayout>
<Button
android:id="@+id/new_object_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/new_object"
android:textSize="18sp"
android:onClick="createNewObject" />
</LinearLayout>
(IntelliJは、上記のXMLにはバインドされていない名前空間があると述べています''
。他のすべてのファイルはまったく同じように見え、警告をトリガーしません。ファイルに問題があるのか、IntelliJのバグなのかわかりません) 。
TextView
最初は、アダプタが空の場合、が表示され、が表示されないという事実が原因である可能性があると思いましたListView
。ただし、フラグメントのコードは常にを検索しますListView
。
生成されたR.java
ファイルを確認しましたが、正しい名前のが含まれています。id
MainObjectsFragment
私はここに:のコードも投稿します
public class MainObjectsFragment extends Fragment {
public ListView objectsList;
public Button newObjectButton;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.main_objects_fragment, container, false);
this.objectsList = (ListView) view.findViewById(R.id.main_objects_view);
// Before I only placed this empty TextView via xml. This does not change
// the error at all.
TextView emptyText = new TextView(getActivity());
emptyText.setText(getActivity().getString(R.string.no_objects_available));
emptyText.setTextSize(TypedValue.COMPLEX_UNIT_SP, 22);
emptyText.setGravity(Gravity.CENTER);
this.objectsList.setEmptyView(emptyText);
this.objectsList.setAdapter(
new ArrayAdapter<String>(getActivity(), R.id.main_objects_view,
new String[0])
);
this.newObjectButton = (Button) view.findViewById(R.id.new_object_button);
return view;
}
public void setCharsAdapter(Context ctx, String[] data) {
this.objectsList.setAdapter(
new ArrayAdapter<String>(ctx, R.id.main_objects_view, data));
}
}