tags:

views:

17

answers:

1

Trying to assign a key to each field in android to reference in Java.

A: 

If I understand what you mean

In XML :

android:id="your_id"

and to retrieve it in your code :

findViewById(R.id.your_id)
fedj