0

TextViewのコンテンツを更新する際に 1 つの問題に直面していRelativeLayoutます。2 回目に更新するときは、以前のテキストを からクリアする必要がありますRelativeLayout

私はRelativeLayout自分のアプリに1つ持っていますactivity_calendar.xml

<RelativeLayout
            android:id="@+id/rel_container"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentRight="true"
            android:layout_alignTop="@+id/linearLayout1"
            android:layout_toRightOf="@+id/linearLayout1">

</RelativeLayout>

これはメインコードです:

public void listall () {
  RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.rel_container);
    int prevTextViewId = 0;
    for (int i = 0; i < titleCalendar.length; i++) {
        final TextView textView = new TextView(this);
        textView.setText(titleCalendar[i]);
        cnvrttime = hourCalendar[i] - 3;
        addcnvrtTime = 60*cnvrttime;
        curTextViewId = prevTextViewId + 1;
        textView.setId(curTextViewId);
        final RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT,RelativeLayout.LayoutParams.WRAP_CONTENT);

        params.addRule(RelativeLayout.BELOW, addcnvrtTime);
        params.setMargins(0, convertDPtoInt((float)addcnvrtTime), 0, 0);
        textView.setLayoutParams(params);

        prevTextViewId = curTextViewId;
        relativeLayout.addView(textView, params);

}
4

2 に答える 2

0

後で見つけられるように、TextView に ID を指定する必要があります。

textView.setId(1234);

じゃあ後で:

TextView textView = findViewById(1234);
textView.setText("New Text");
于 2013-07-25T12:25:42.227 に答える