Java – how to pass generic classes as params to the intent constructor

I have this general activity in my android app

public class NavegadorActivity<T> extends Activity {

    ....
...
}

I try to call it the following

Intent intent = new Intent(v.getContext(),NavegadorActivity<Clientes>.class);

However, the intent constructor does not accept a generic class as param Then I tried this code

Class<NavegadorActivity<Clientes>> NavClientes =  NavegadorActivity.class;

Intent intent = new Intent(v.getContext(),NavClientes.class);

Neither will work

Not this

Class<NavegadorActivity<Clientes>> NavClientes =  NavegadorActivity<Clientes>.class;

Intent intent = new Intent(v.getContext(),NavClientes.class);

Does anyone know how to pass a generic class as a param to the intent constructor?

thank you

Solution

I don't believe that Android intent system supports generic activities. You shouldn't just create your own activity object I suggest that you add an internal class to your activity that represents common functionality and use that common name

intent.putExtraString("class",yourClass.getName());

And by forwarding that kind of object

Class<?> myGeneric = Class.forName(intent.getStringExtra("class","java.Object");
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>