0

アプリが開いたときに開始されるメイン アクティビティがあります。アクティビティが開始されると、メイン アクティビティ onCreate から GridView フラグメントが開かれます (また、メイン アクティビティとフラグメントは同じ XML レイアウトを共有します)。

私が抱えている問題は、ボタンに onClick イベントを追加しようとするたびに、メイン アクティビティから GridView のフラグメントを開くコードを削除しない限り何も起こらないことです。

注: 同時に多数の画像を表示しているため、GridView にフラグメントを使用しています。そのため、パフォーマンスに影響を与えずに効率的に処理できるように Fragment クラスを設定しました。

これを回避する方法はありますか?, 事前に乾杯.

主な活動:

public class ImageGridActivity extends FragmentActivity {
private static final String TAG = "ImageGridActivity";

@Override
protected void onCreate(Bundle savedInstanceState) {
    setContentView(R.layout.image_grid_fragment);
    if (BuildConfig.DEBUG) {
        Utils.enableStrictMode();

    //Whenever I remove this code here:
    }
    super.onCreate(savedInstanceState);

    if (getSupportFragmentManager().findFragmentByTag(TAG) == null) {
        final FragmentTransaction ft = getSupportFragmentManager()
                .beginTransaction();
        ft.add(android.R.id.content, new ImageGridFragment(), TAG);
        ft.commit();

    //To here, it works

    Button B1 = (Button) findViewById(R.id.button1);
    B1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub



            Log.w("myApp", "no network");

        }
    });

}
}
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<GridView
    android:id="@+id/gridView"
    style="@style/PhotoGridLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:columnWidth="@dimen/image_thumbnail_size"
    android:horizontalSpacing="@dimen/image_thumbnail_spacing"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth"
    android:verticalSpacing="@dimen/image_thumbnail_spacing" >
</GridView>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="Button" />

</RelativeLayout>
4

1 に答える 1