Abbiamo cercato e lavorato su questo a lungo - senza fortuna. (Deve essere semplice Grazie per l'assist?.)Come eseguire findViewById (R.id. >> StringVarHere <<)?
Cercando di ottenere/impostare una schermata di testo EditTexts', ma non con il solito, molto più hard-coded:
... findViewById (R.id.SomeTextWidgetId) ;
Invece, Sto cercando di capire un modo riutilizzabile tramite una variabile che contiene il nome_stringa (String).
Nel codice pseudo:
findViewById (. R.id >> StringVarHere < <); // come farlo ?
ho provato anche questo metodo findViewById, ma non ha funzionato (!?)
//// given:
static final String FIELD_TV_FEE = "TextViewFee" ;
static final String FIELD_TV_FOO = "TextViewFoo" ;
static final String FIELD_TV_FUM = "TextViewFum" ;
//// and some arbitrary number more of similar fields
static final String [] ALL_FIELDS = {
FIELD_TV_FEE ,
FIELD_TV_FOO ,
FIELD_TV_FUM // ...
} ;
//// ...
//// this part works
int ResourceID;
String stringVarHere = FIELD_TV_FEE;
//// outputs a correct id, say '0x7f05000f' as in R.id.xxx below
ResourceID = context
.getResources()
.getIdentifier (stringVarHere,
"id",
context
.getApplicationInfo()
.packageName
) ;
Log.d ("MyClass" , "RESID = " + Integer.toHexString(ResourceID)) ;
/*
* that's where I'm stuck ^^^ ... how do I do:
*/
String field_name ;
for (field_name : ALL_FIELDS) {
(EditText) SomethingLike_a_findViewById(field_name).setText ("Hello Wurld") ;
}
Ho provato .setId ...
//// details
<!-- excerpt from working xml layout -->
<EditText
android:id="@+id/TextViewFee"
android:inputType="text"
android:layout ... etc ...
/>
<EditText
android:id="@+id/TextViewFoo"
android:inputType="text"
android:layout ... etc ...
/>
<EditText
android:id="@+id/TextViewFum"
android:inputType="text"
android:layout ... etc ...
/>
Come previsto, il gen 'file di R DE ha qualcosa di simile:
// ...
public static final class id {
public static final int TextViewFee=0x7f05000f;
public static final int TextViewFum=0x7f05001c;
public static final int TextViewFoo=0x7f05001d;
// ... etc
Sì, grazie - ha senso farlo nell'attività. Stavo cercando di evitare che diventasse troppo voluminoso. Ecco cosa sto facendo ora, basato sui suggerimenti utili di A e C. L'intenzione è di riportare tutto il testo dei campi di un modulo in una stringa []. (So che potrei forza bruta anche tutti i campi.)
Cosa ne pensi di questo qui sotto - sembra molto simile al tuo suggerimento, madlymad? Mi chiedo se questo è un approccio di progettazione scadente?
public class FoodBar {
private Activity activity;
private Context ctx;
public FoodBar (Activity _activity) {
this.activity = _activity;
this.ctx = this.activity.getApplicationContext() ;
}
public String[] getTextFromAllEditTexts() { // the UI views
int res_id = 0;
int i = 0;
String [] retValues = new String [MyClassName.ALL_FIELDS_LENGTH] ;
for (String field : MyClassName.ALL_FIELDS_ALL_VEHICLES) {
res_id = this.ctx.getResources()
.getIdentifier (field, "id", this.ctx.getPackageName());
((EditText) this.activity
.findViewById (res_id))
.setText("Meat and Potatoes") ;
// redundant - get it right back to make sure it really went in !
retVal[i++] = ((EditText) this.activity
.findViewById (res_id))
.getText().toString() ;
}
return retVal;
} // end func
} // end class
Poi dalla classe di attività, è solo:
String [] theFields = null;
FoodBar = new FoodBar (this);
try {
theFields = FoodBar.getTextFromAllEditTexts();
} catch (Exception e) {
Log.d ("OOPS", "There's a big mess in the Foodbar: " + e.toString());
}
Guardando la risposta SO che dici di aver provato, dovrebbe funzionare. Assicurati di fare tutto ciò dopo aver chiamato 'setContentView()' –
Spiacente, "SO"? Cos'è quello ? ... sì, dimenticando di setContentView significa che non esiste un xml a cui fare riferimento :) ... –
SO = "StackOverflow". Penso che dovresti pubblicare il processo che hai usato sia per il mio che per l'implementazione di quella risposta. Ho provato la mia implementazione e ha funzionato, quindi non sono sicuro del motivo per cui non funziona per te. –