button
を使用して別のページに移動しようとしましたが、常に失敗します。
XMLを使用した最初のクラス:
public class FindPeopleFragment extends Fragment {
public FindPeopleFragment(){}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_home, container, false);
return rootView;
}
public void goToAttract(View v)
{
Intent intent = new Intent(getActivity().getApplication(), MainActivityList.class);
startActivity(intent);
}
}
ここに私のXML:
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="match_parent" >
<Button
Android:id="@+id/button1"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_centerHorizontal="true"
Android:layout_centerInParent="true"
Android:layout_marginBottom="48dp"
Android:onClick="goToAttract"
Android:text="Button" /></RelativeLayout>
これは私のスタックトレースです。これはonclicklistenerを使用したときの結果です
12-30 16:54:28.006: E/AndroidRuntime(992): FATAL EXCEPTION: main
12-30 16:54:28.006: E/AndroidRuntime(992): Java.lang.RuntimeException: Unable to start activity ComponentInfo{info.androidhive.slidingmenu/info.androidhive.slidingmenu.MainActivityList}: Android.view.InflateException: Binary XML file line #7: Error inflating class <unknown>
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.app.ActivityThread.performLaunchActivity(ActivityThread.Java:1955)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.app.ActivityThread.handleLaunchActivity(ActivityThread.Java:1980)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.app.ActivityThread.access$600(ActivityThread.Java:122)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.app.ActivityThread$H.handleMessage(ActivityThread.Java:1146)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.os.Handler.dispatchMessage(Handler.Java:99)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.os.Looper.loop(Looper.Java:137)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.app.ActivityThread.main(ActivityThread.Java:4340)
12-30 16:54:28.006: E/AndroidRuntime(992): at Java.lang.reflect.Method.invokeNative(Native Method)
12-30 16:54:28.006: E/AndroidRuntime(992): at Java.lang.reflect.Method.invoke(Method.Java:511)
12-30 16:54:28.006: E/AndroidRuntime(992): at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:784)
12-30 16:54:28.006: E/AndroidRuntime(992): at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:551)
12-30 16:54:28.006: E/AndroidRuntime(992): at dalvik.system.NativeStart.main(Native Method)
12-30 16:54:28.006: E/AndroidRuntime(992): Caused by: Android.view.InflateException: Binary XML file line #7: Error inflating class <unknown>
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.view.LayoutInflater.createView(LayoutInflater.Java:606)
12-30 16:54:28.006: E/AndroidRuntime(992): at com.Android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.Java:56)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.view.LayoutInflater.onCreateView(LayoutInflater.Java:653)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.view.LayoutInflater.createViewFromTag(LayoutInflater.Java:678)
12-30 16:54:28.006: E/AndroidRuntime(992): at Android.view.LayoutInflater.rInflate(LayoutInflater.Java:
これを使って
public void goToAttract(View v)
{
Intent intent = new Intent(getActivity(), MainActivityList.class);
startActivity(intent);
}
マニフェストにMainActivityList
を登録していることを確認してください
このコードを一度試してください-
public class FindPeopleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_home,
container, false);
Button button = (Button) rootView.findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
updateDetail();
}
});
return rootView;
}
public void updateDetail() {
Intent intent = new Intent(getActivity(), MainActivityList.class);
startActivity(intent);
}
}
Raghunandanが示唆するように、fragment_home.xml
-
Android:onClick="goToAttract"
これを削除
_Android:onClick="goToAttract"
_
それから
_View rootView = inflater.inflate(R.layout.fragment_home, container, false);
Button b = (Button)rootView.findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Intent intent = new Intent(getActivity(), MainActivityList.class);
startActivity(intent);
}
});
return rootView;
_
エラーは、アクティビティクラスでpublic void goToAttract(View v)
する必要があると言っています
_Could not find method goToAttract(View) in the activity class
_
理由は、PareshMayani @による回答をチェックしてください。
Androidアプリのクラッシュ(フラグメントおよびXMLオンクリック)
編集:
_Caused by: Java.lang.OutOfMemoryError
_
画像が大きすぎて収まらないため、縮小する必要があると思います。したがって、OutOfMemoryError
。
受信目的で
Intent intent = getActivity().getIntent();
((TextView)view.findViewById(R.id.hello)).setText(intent.getStringExtra("Hello"));
そして、あなたの送信意図で
Intent intent = new Intent(getActivity(),Main2Activity.class);
intent.putExtra("Hello","Nisar");
getActivity().startActivity(intent);
両方がフラグメントにあることを忘れないでください
IntentのフラグメントからgetActivity()メソッドを使用する必要があります。
Intent intent = new Intent(getActivity(), SecondActivity.class);
startActivity(intent);
このコードが役立つことを願っています
public class ThisFragment extends Fragment {
public Button button = null;
Intent intent;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.yourlayout, container, false);
intent = new Intent(getActivity(), GoToThisActivity.class);
button = (Button) rootView.findViewById(R.id.theButtonid);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(intent);
}
});
return rootView;
}
このコードを使用できます。必ず、フラグメント名として「ThisFragment」、レイアウト名として「yourlayout」、「GoToThisActivity "どのアクティビティに変更するかを変更してから、「theButtonid」を使用したボタンIDに変更します。
FragmentManager fragmentManager = getFragmentManager();
fragmentManager.beginTransaction().replace(R.id.frame, new MySchedule()).commit();
MyScheduleは、my Javaクラスの名前です。
Kotlinの場合は、次を使用できます...
val myIntent = Intent(activity, your_destination_activity::class.Java)
startActivity(myIntent)
そのフラグメントでView
を取得できる場合、そこからコンテキストにアクセスできます。
view.getContext().startActivity(intent);