Próbuję wywołać metodę w moim XML onClick (View v), ale nie działa z fragmentem. To jest błąd.
01-17 12:38:36.840: E/AndroidRuntime(4171): java.lang.IllegalStateException:
Could not find a method insertIntoDb(View) in the activity class main.MainActivity
for onClick handler on view class android.widget.Button with id 'btn_conferma'
Kod Java:
public void insertIntoDb(View v) {
...
}
XML:
<Button
android:id="@id/btn_conferma"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0.0dip"
android:layout_height="45dp"
android:layout_marginLeft="2dp"
android:layout_weight="1.0"
android:background="@drawable/bottoni"
android:gravity="center_horizontal|center_vertical"
android:onClick="insertIntoDb"
android:text="SALVA"
android:textColor="#ffffff"
android:textSize="16sp" />
android
android-button
user3160725
źródło
źródło
Odpowiedzi:
Twoja aktywność musi mieć
public void insertIntoDb(View v) { ... }
nie Fragment.
Jeśli nie chcesz, aby powyższe czynności były wykonywane. zainicjalizuj przycisk we fragmencie i ustaw odbiornik na to samo.
<Button android:id="@+id/btn_conferma" // + missing
Następnie
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_rssitem_detail, container, false); Button button = (Button) view.findViewById(R.id.btn_conferma); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // do something } }); return view; }
źródło
Inną opcją może być zaimplementowanie we fragmencie View.OnClickListener i nadpisanie onClick (View v) w obrębie fragmentu. Jeśli chcesz, aby Twój fragment rozmawiał z działaniem, po prostu dodaj interfejs z wybraną metodą (metodami) i pozwól, aby aktywność zaimplementowała interfejs i zastąpiła jej metodę (metody).
public class FragName extends Fragment implements View.OnClickListener { public FragmentCommunicator fComm; public ImageButton res1, res2; int c; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { return inflater.inflate(R.layout.fragment_test, container, false); } @Override public void onAttach(Activity activity) { super.onAttach(activity); try { fComm = (FragmentCommunicator) activity; } catch (ClassCastException e) { throw new ClassCastException(activity.toString() + " must implement FragmentCommunicator"); } } @Override public void onActivityCreated(Bundle savedInstanceState) { res1 = (ImageButton) getActivity().findViewById(R.id.responseButton1); res1.setOnClickListener(this); res2 = (ImageButton) getActivity().findViewById(R.id.responseButton2); res2.setOnClickListener(this); } public void onClick(final View v) { //check for what button is pressed switch (v.getId()) { case R.id.responseButton1: c *= fComm.fragmentContactActivity(2); break; case R.id.responseButton2: c *= fComm.fragmentContactActivity(4); break; default: c *= fComm.fragmentContactActivity(100); break; } public interface FragmentCommunicator{ public int fragmentContactActivity(int b); } public class MainActivity extends FragmentActivity implements FragName.FragmentCommunicator{ int a = 10; //variable a is update by fragment. ex. use to change textview or whatever else you'd like. public int fragmentContactActivity(int b) { //update info on activity here a += b; return a; } }
http://developer.android.com/training/basics/firstapp/starting-activity.html http://developer.android.com/training/basics/fragments/communicating.html
źródło
To nie jest problem, to jest projekt Androida. Zobacz tutaj :
Możliwym obejściem byłoby zrobienie czegoś takiego w Twojej MainActivity:
Fragment someFragment; ...onCreate etc instantiating your fragments public void myClickMethod(View v){ someFragment.myClickMethod(v); }
a następnie w klasie Fragment:
public void myClickMethod(View v){ switch(v.getid()){ // Your code here } }
źródło
Inni już powiedzieli, że metody w onClick są wyszukiwane w działaniach, a nie we fragmentach. Niemniej jednak, jeśli naprawdę tego chcesz, jest to możliwe.
Zasadniczo każdy widok ma tag (prawdopodobnie null). Ustawiliśmy znacznik widoku głównego na fragment, który zawyżał ten widok. Wówczas można łatwo przeszukać widok rodziców i odzyskać fragment zawierający kliknięty przycisk. Teraz znajdujemy nazwę metody i używamy odbicia, aby wywołać tę samą metodę z pobranego fragmentu. Łatwy!
w klasie, która rozszerza
Fragment
:@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_id, container, false); OnClickFragments.registerTagFragment(rootView, this); // <========== !!!!! return rootView; } public void onButtonSomething(View v) { Log.d("~~~","~~~ MyFragment.onButtonSomething"); // whatever }
wszystkie działania pochodzą z tego samego ButtonHandlingActivity:
public class PageListActivity extends ButtonHandlingActivity
ButtonHandlingActivity.java:
public class ButtonHandlingActivity extends Activity { public void onButtonSomething(View v) { OnClickFragments.invokeFragmentButtonHandlerNoExc(v); //or, if you want to handle exceptions: // try { // OnClickFragments.invokeFragmentButtonHandler(v); // } catch ... } }
Musi zdefiniować metody dla wszystkich programów obsługi XML onClick.
com / example / customandroid / OnClickFragments.java:
package com.example.customandroid; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import android.app.Fragment; import android.view.View; public abstract class OnClickFragments { public static class FragmentHolder { Fragment fragment; public FragmentHolder(Fragment fragment) { this.fragment = fragment; } } public static Fragment getTagFragment(View view) { for (View v = view; v != null; v = (v.getParent() instanceof View) ? (View)v.getParent() : null) { Object tag = v.getTag(); if (tag != null && tag instanceof FragmentHolder) { return ((FragmentHolder)tag).fragment; } } return null; } public static String getCallingMethodName(int callsAbove) { Exception e = new Exception(); e.fillInStackTrace(); String methodName = e.getStackTrace()[callsAbove+1].getMethodName(); return methodName; } public static void invokeFragmentButtonHandler(View v, int callsAbove) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException { String methodName = getCallingMethodName(callsAbove+1); Fragment f = OnClickFragments.getTagFragment(v); Method m = f.getClass().getMethod(methodName, new Class[] { View.class }); m.invoke(f, v); } public static void invokeFragmentButtonHandler(View v) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException { invokeFragmentButtonHandler(v,1); } public static void invokeFragmentButtonHandlerNoExc(View v) { try { invokeFragmentButtonHandler(v,1); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (IllegalArgumentException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } public static void registerTagFragment(View rootView, Fragment fragment) { rootView.setTag(new FragmentHolder(fragment)); } }
A następną przygodą będzie zaciemnianie proguardów ...
PS
Oczywiście do Ciebie należy zaprojektowanie aplikacji tak, aby dane były obecne w modelu, a nie w działaniach lub fragmentach (które są kontrolerami z punktu widzenia MVC , Model-View-Controller ). Zobacz , co można zdefiniować za pomocą XML, plus zajęcia Widok niestandardowy (jeśli je zdefiniować, większość ludzi po prostu ponowne co już jest). Praktyczna zasada: jeśli niektóre dane z pewnością muszą przetrwać obrót ekranu, należą do Modelu .
źródło
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.writeqrcode_main, container, false); // Inflate the layout for this fragment txt_name = (TextView) view.findViewById(R.id.name); txt_usranme = (TextView) view.findViewById(R.id.surname); txt_number = (TextView) view.findViewById(R.id.number); txt_province = (TextView) view.findViewById(R.id.province); txt_write = (EditText) view.findViewById(R.id.editText_write); txt_show1 = (Button) view.findViewById(R.id.buttonShow1); txt_show1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.e("Onclick","Onclick"); txt_show1.setVisibility(View.INVISIBLE); txt_name.setVisibility(View.VISIBLE); txt_usranme.setVisibility(View.VISIBLE); txt_number.setVisibility(View.VISIBLE); txt_province.setVisibility(View.VISIBLE); } }); return view; }
W porządku !!!!
źródło
Dla użytkowników Kotlin:
override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?) : View? { // Inflate the layout for this fragment var myView = inflater.inflate(R.layout.fragment_home, container, false) var btn_test = myView.btn_test as Button btn_test.setOnClickListener { textView.text = "hunny home fragment" } return myView }
źródło