おはようございます、
私はAndroidアプリを開発している最中で、解決できないものに出くわしました(検索は、ネット上で見つかったコードをあちこちから試したり適応させたりするのに役立ちませんでした)。私の特定のケースで助けが必要です。
私のアプリはシンプルで、メイン アクティビティ (FragmentActivity) に移動するよりも開始時のスプラッシュ スクリーン (5 秒間実行) です。メイン アクティビティには、5 つの異なる ListFragments があります (現在、リストにランダムなテキストをロードして、どのように表示されるかを確認しています)。すべてのフラグメントには、ListFragment を設定する独自のデータベースがあります (他のデータベースを作成する前に、1 つのデータベースを試してみる必要があります)。
私が完成した1つのデータベースについて、アダプター、ハンドラー、およびプロバイダーをいじってみましたが、何も機能しませんでした(データベースのListFragmentはロードサークルを表示していました)。
次に、「アプリで独自のデータベースを使用する」というチュートリアルを見つけましたが、それも役に立ちませんでした (自分のプロジェクトで動作するようにコードを変更できなかったと言ったほうがよいでしょう)。
私が必要とするのはこれだけです:
- スプラッシュスクリーン中に、データベースを初めてロードし (将来的にはより多くのデータベース)、デバイスに保存する必要があります (アプリが起動するたびにスプラッシュスクリーンが表示されますが、最初にデータベースをロードするだけです) - 注: 不明いずれにせよ、データベースをロードするたびにスプラッシュスクリーンが表示され、それぞれ 200 バイトの 5 DB には 5 秒で十分だと思うので、これが可能であれば問題ありません。
- メイン アクティビティは、データベースからのデータを含む最初の ListFragment を表示します。
- 次の ListFragment にスワイプすると、2 番目のデータベースからのデータが表示されます...
これまでの私のコードは次のとおりです。
スプラッシュスクリーン
public class Splash extends Activity {
private boolean bIsBackButtonPressed;
private static final int SPLASH_DURATION = 5000;
private static final int FM_NOTIFICATION_ID = 0;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("Testing app in execution")
.setContentText("Click here to go back in the app");
Intent notificationIntent = new Intent(this, Main.class);
notification.setOngoing(true);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
notification.setContentIntent(contentIntent);
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(FM_NOTIFICATION_ID, notification.build());
setContentView(R.layout.splash);
ImageView splashImage = (ImageView) findViewById(R.id.splash_screen_);
int orient = getWindowManager().getDefaultDisplay().getRotation();
if (orient == 0) {
splashImage.setBackgroundResource(R.drawable.splash_screen_port);
} else {
splashImage.setBackgroundResource(R.drawable.splash_screen_land);
}
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
finish();
if (!bIsBackButtonPressed) {
Intent intent = new Intent(Splash.this, Main.class);
Splash.this.startActivity(intent);
}
}
}, SPLASH_DURATION);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
ImageView splashImage = (ImageView) findViewById(R.id.splash_screen_);
int orient = getWindowManager().getDefaultDisplay().getRotation();
if (orient == 0) {
splashImage.setBackgroundResource(R.drawable.splash_screen_port);
} else {
splashImage.setBackgroundResource(R.drawable.splash_screen_land);
}
}
@Override
public void onBackPressed() {
bIsBackButtonPressed = true;
finish();
super.onBackPressed();
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.cancel(FM_NOTIFICATION_ID);
}
}
ここに私のMainActivityがあります
public class Main extends FragmentActivity {
SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
}
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int position) {
Fragment fragment = new Fragment();
switch (position) {
case 0:
return fragment = new 1List();
case 1:
return fragment = new 2List();
case 2:
return fragment = new 3List();
case 3:
return fragment = new 4List();
case 4:
return fragment = new 5List();
default:
break;
}
return fragment;
}
@Override
public int getCount() {
return 5;
}
@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return getString(R.string.1);
case 1:
return getString(R.string.2);
case 2:
return getString(R.string.3);
case 3:
return getString(R.string.4);
case 4:
return getString(R.string.5);
}
return null;
}
}
private static final int FM_NOTIFICATION_ID = 0;
@Override
public void onBackPressed() {
new AlertDialog.Builder(this)
.setMessage("Do you want to close the app?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Main.this.finish();
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.cancel(FM_NOTIFICATION_ID);
}
})
.setNegativeButton("No", null)
.show();
}
}
これは私の最初の ListFragment です (他の 4 つのコンテンツはまったく同じです。これには、assets フォルダーに保存されているデータベースからのデータを入力する必要があります)。
public class 1List extends ListFragment {
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
String[] values = new String[] {
"Android", "iPhone", "WindowsMobile", "Blackberry", "WebOS", "Ubuntu", "Windows7", "Mac OS X", "Linux", "OS/2"
};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, values);
setListAdapter(adapter);
}
}
前述したように、 CursorAdapter - 1ListDatabaseAdapter を拡張するアダプターがあります。
public class 1ListDatabaseAdapter extends CursorAdapter {
private LayoutInflater inflater;
private int s;
String TAG = "1ListDatabaseAdapter";
public 1ListDatabaseAdapter(Context context, Cursor c){
super(context, c);
inflater = LayoutInflater.from(context);
s = c.getCount();
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView name = (TextView) view.findViewById(R.id.name);
name.setText(cursor.getString(1));
cursor.moveToNext();
}
@Override
public View newView(Context arg0, Cursor arg1, ViewGroup arg2) {
return inflater.inflate(R.layout.list_item, null);
}
}
そして、ハンドラー 1ListDatabaseHandler があります。
public class 1ListDatabaseHandler extends SQLiteOpenHelper {
private static final String TAG = 1ListDatabaseHandler.class.getSimpleName();
private static final String DATABASE_NAME = "1ldb.db";
private static final int DATABASE_VERSION = 1;
public static final String ID = "_id";
public static final String TABLE_NAME = "1list";
public static final String NAME = "name";
public static final String TYPE = "type";
public static final String ADDRESS = "adress";
public static final String PHONE = "phone";
public static final String MAIL = "email";
public static final String SITE = "website";
private static final String TABLE_CREATE = " CREATE TABLE IF NOT EXISTS " + TABLE_NAME + " ( " + ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
+ NAME + " STRING, " + TYPE + " STRING, " + ADDRESS + " STRING, " + PHONE + " STRING, " + MAIL + " STRING, " + SITE + " STRING ); ";
private static final String TABLE_DROP = "DROP TABLE IF EXISTS " + TABLE_NAME;
AlojamentoDatabaseHandler(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
// Log.i(TAG, "DatabaseHandler was initiated. ");
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(TABLE_CREATE);
Log.i(TAG, "1ListDatabaseHandler: " + db);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w(TAG, "Upgrading the database from version " + oldVersion + " to version " + newVersion);
db.execSQL(TABLE_DROP);
onCreate(db);
}
public void insert(String name, String type, String adress, String phone, String email, String website) {
long rowId = -1;
try {
SQLiteDatabase db = getWritableDatabase();
ContentValues values = new ContentValues();
values.put(NAME, name);
values.put(TYPE, type);
values.put(ADDRESS, adress);
values.put(PHONE, phone);
values.put(MAIL, email);
values.put(SITE, website);
rowId = db.insert(TABLE_NAME, null, values);
Log.i(TAG, "insert: " + name + ", " + type + ", " + adress + ", " + phone + ", " + email + ", " + website);
} catch (SQLiteException e) {
Log.i(TAG, "insert()", e);
} finally {
Log.i(TAG, "insert(): rowId=" + rowId);
}
}
public Cursor query() {
SQLiteDatabase db = getWritableDatabase();
return db.query(TABLE_NAME, null, null, null, null, null, ID + " ASC");
}
}
すべてのインポートが正しく行われ、アプリはデータベースなしで (もちろん視覚的な例として) 正常に動作し、今まで 1ListFragment 内のデータを表示するために sqlite データベースに接続する必要があります (ここで質問する前に) )私は自分で理解しようとして多くの調査を行いました(それが私の仕事の仕方です-そうです!)が、いつも頭を悩ませていました。非常に多くのコードを作成して適応させようとしましたが、何も機能しませんでした。シンプルに指を置くことはできません。作成済みの独自のデータベースをアプリに接続し、データを 1ListFragment に表示するにはどうすればよいですか?
前もって感謝します。