我有一个包含GridView和Buttons的主布局。
注意:在我阅读之前:我使用片段的原因是因为我同时在GridView中显示大量图像,所以我设置了Fragment类来有效地处理它们而不会影响性能。
我希望处理GridViews行为的片段与处理按钮行为的活动分开(我的主片段和活动都共享相同的布局)。
当我尝试这样做时,应用程序加载,加载所有图像并且按钮存在。 当我点击按钮(我已经设置了TAG)时,控制台中没有TAG消息显示我按下了按钮。
然后,当我按下手机上的后退按钮时,GridView消失并且按钮仅存在,然后一旦我点击它,TAG消息就会在控制台中显示该消息。
我将如何解决这个问题,我在这里做什么,这是一个好主意还是坏主意?提前谢谢。
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();
}
}
}
答案 0 :(得分:0)
您正在MainActivity的onCreate中启动ImageGridActivity。这意味着,一旦MainACtivity启动,它就会启动ImageGridActivity。
SearchListButton位于MainActivity中,但ImageGridActivity位于活动堆栈之上。这就是没有发生按钮点击的原因。 MainActivity失去了焦点并转移到活动堆栈中的下一个位置。
当您按下时,ImageGridActivity将被销毁,MainActivity将成为焦点。现在SeachListButton点击工作。
建议是什么,
您可以在按钮点击等某些事件上启动ImageGridActivity。你为什么需要两项活动?为什么不只是ImageGrdActivity?