如何做一个findViewById(R.id.>> StringVarHere <<)?

How*_*utz 6 android findviewbyid

搜索和工作了很长一段时间 - 没有运气.(一定很简单?谢谢你的帮助.)

试图获取/设置一个充满EditTexts文本的屏幕,但不是采用通常的,更加硬编码的方式:

... findViewById (R.id.SomeTextWidgetId) ;
Run Code Online (Sandbox Code Playgroud)

相反,我试图通过一个包含(String)name_of_widget的变量来找出一种可重用的方法.

在伪代码中:

findViewById(R.id.>> StringVarHere <<); // 怎么做 ?

我也尝试了这个findViewById方法,但它没有用(!?)

//// 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") ;
}
Run Code Online (Sandbox Code Playgroud)

我试过.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 ...         
        />
Run Code Online (Sandbox Code Playgroud)

正如所料,gen'ed R文件有这样的东西:

// ...
public static final class id {
    public static final int TextViewFee=0x7f05000f;
    public static final int TextViewFum=0x7f05001c;
    public static final int TextViewFoo=0x7f05001d;
    // ... etc
Run Code Online (Sandbox Code Playgroud)

是的,谢谢 - 在活动中这样做是有意义的.我试图阻止它变得过于笨重.根据您和AC的有用建议,这就是我现在正在做的事情.目的是将表单的所有字段文本放回一个String []中.(我知道我也可以对所有领域进行暴力破坏.)

你们下面对此有何看法 - 看起来与你的建议非常相似,madlymad?我想知道这是一个糟糕的设计方法吗?

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
Run Code Online (Sandbox Code Playgroud)

然后从Activity类中,它只是:

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() );
}
Run Code Online (Sandbox Code Playgroud)

mad*_*mad 3

你可以这样做的方式是(据我了解你正在尝试的方式):

这可以在非活动中(YourClassname.java):

public static int getMyId(Context context, String field) {
     return context.getResources().getIdentifier (field, "id", context.getPackageName());
}
Run Code Online (Sandbox Code Playgroud)

在活动类中:

for ( String field_name : YourClassname.ALL_FIELDS ) {
    int resid = YourClassname.getMyId(context, field_name);
    if(resid != 0) { // 0 = not found 
       EditText et = (EditText) findViewById(resid);
       if (et != null) {
          et .setText ("Hello Wurld") ;
       }
    }
}
Run Code Online (Sandbox Code Playgroud)

但我认为最好在活动类中编码,例如:

String packageName = getPackageName();
Resources res = getResources();
for ( String field_name : YourClassname.ALL_FIELDS ) {
    int resid = res.getIdentifier (field_name, "id", packageName);
    if(resid != 0) {// 0 = not found 
       EditText et = (EditText) findViewById(resid);
       if (et != null) {
          et .setText ("Hello Wurld") ;
       }
    }
}
Run Code Online (Sandbox Code Playgroud)