TextView textTV = (TextView)ScorePoster.this.findViewById(R.id.display_text_textview);

- **.java -


    <string name="post_score">Post Score</string>
    <string name="score_display_text">Display Text</string>

- string.xml -

<LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
  <TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/score_to_post"/>
  <EditText android:layout_width="fill_parent" android:maxLength="20" android:layout_height="wrap_content" android:numeric="integer" android:singleLine="true" android:id="@+id/post_score_textview"/>
</LinearLayout>
<LinearLayout android:id="@+id/LinearLayout02" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
  <TextView android:id="@+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/score_display_text"/>
  <EditText android:layout_width="fill_parent" android:maxLength="20" android:layout_height="wrap_content" android:singleLine="true" android:id="@+id/display_text_textview"/>
</LinearLayout>

- score_poster.xml -

이부분에서 findViewById을 이용해, R.id.display_text_textview을 가져오는거 같은데, 자동으로 값이 들어가는건가요?  값을 넣는 부분은 못찾았는데 , 좀 이해가 안되서요. 왜냐하면 그 뒤에서
String textValue = textTV.getText().toString();
Score s = new Score(scoreValue, (textValue.length() > 0 ? textValue : null));
이런식으로 textValue값을 사용하는데, 여기다 null을 넣었더니, 그 뒤에 s.submitTo(l, new Score.SubmitToCB()....)  요 부분에서
onFailure가 발생하더라구요. 첫번째로 textValue에 먼가 값이 어떻게 들어가는지 이해가 안되고, 그게 이해가 안되니까 어떤게 들어가는지 이해가 안됩니다. 좀 도와주세요 ... ㅠㅠ