gpt4 book ai didi

android - FragmentActivity 上的按钮不起作用

转载 作者:行者123 更新时间:2023-11-30 03:34:32 27 4
gpt4 key购买 nike

今天我尝试创建一个带有 fragment Activity 的项目。我有一个 MainActivity 范围 FragmentActivity。 MainActvity 有布局。

activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

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

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />

</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="2dip"
android:background="#000" />

<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>

</LinearLayout>

Layout 有 2 个按钮,还有一个用于替换 Fragment 的 FrameLayout。在 MainActivity onCreate 中,我插入了一个 fragment 。

MainAcivity.java

public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);
((Button) findViewById(R.id.button1)).setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Log.e("Button", "click--------------");
}
);
getSupportFragmentManager().beginTransaction().replace(R.id.frame_layout, fragment).addToBackStack(null).commit();
}
}

当我将一个 fragment 插入到 R.id.frame_layout 中时,我尝试触摸 button1 但它没有响应。我在logcat中看不到它

请帮帮我!谢谢

最佳答案

在 fragment 中使用这个:

您的 XML:

  <Button
android:id="@+id/btnLogin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="yourmethod"
android:text="Login" />

你的代码:

  public void yourmethod(View v){
//dosomthing
}

关于android - FragmentActivity 上的按钮不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16834982/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com