我有一个包含 GridView 和按钮的主布局。
阅读前注意:我使用片段的原因是因为我同时在 GridView 中显示大量图像,所以我设置了片段类来有效地处理它们而不影响性能。
我希望处理 GridViews 行为的片段与处理按钮行为的活动分开(我的主要片段和活动都共享相同的布局)。
当我尝试这样做时,应用程序加载,加载所有图像并且按钮存在。当我单击按钮时(我已经为它设置了一个标签),控制台中没有显示我按下按钮的标签消息。
然后,当我按下手机上的后退按钮时,GridView 消失并且按钮只存在,然后一旦我单击它,标签消息就会在控制台中显示该消息。
我将如何解决这个问题,还有,我在这里做什么,是好主意还是坏主意?提前致谢。
XML:
<?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" >
<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>
主要活动:
public class MainActivity extends Activity {
public static String TAG = "Test";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.image_grid_fragment);
startActivity(new Intent(this, ImageGridActivity.class));
Button SearchListButton = (Button) findViewById(R.id.button1);
SearchListButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.d(TAG, "clicked");
}
});
}
}
主要片段:
public class ImageGridActivity extends FragmentActivity {
private static final String TAG = "ImageGridActivity";
@Override
protected void onCreate(Bundle savedInstanceState) {
if (BuildConfig.DEBUG) {
Utils.enableStrictMode();
}
super.onCreate(savedInstanceState);
if (getSupportFragmentManager().findFragmentByTag(TAG) == null) {
final FragmentTransaction ft = getSupportFragmentManager()
.beginTransaction();
ft.add(android.R.id.content, new ImageGridFragment(), TAG);
ft.commit();
}
}
}