I want to infinitely loop a method when in the Main Fragment, but I keep getting issues saying the return or the loop is unreachable or I may throw and exception. Should I be using try / catch / finally?
Any ideas help!
View v = inflater.inflate(R.layout.fragment_main, container, false);
return v;
while (true) { // This line is unreachable
aMethod();
}