0

在我的 android 应用程序中,我一直在使用 RelativeLayout 和充气器。所以我需要在textView中设置文本,我用过Inflater,但我不能通过代码设置文本。

XML 文件活动标题

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_height="match_parent"
android:background="#000000" >

<TextView
    android:id="@+id/text_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:text="Text" />

</RelativeLayout>

2.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>

所以这是使用充气机的代码

relativeLayout = (RelativeLayout) findViewById(R.id.rel_container);
    ((ViewGroup) relativeLayout).removeAllViews();
    for (int i = 0; i < titleCalendar.length; i++) {
        getApplicationContext();
        vi= (LayoutInflater)
  getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = vi.inflate(R.layout.activity_title, null);  
        textViewC = (TextView) v.findViewById(R.id.text_title);
        textViewC.setText("sdfsfasfasfasfasf");
        textViewC.setTextColor(Color.parseColor("#ffffff"));


        final RelativeLayout.LayoutParams params = new 
RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT,RelativeLayout.LayoutParams.WRAP_CONTENT);

        params.addRule(RelativeLayout.BELOW, addcnvrtTime);


        textViewC.setLayoutParams(params);
        ((ViewGroup) relativeLayout).addView(v, 0, params);

    }

我看不到我在那个 textview 上设置的文本

4

2 回答 2

2

这是为了获得 Inflater 元素:

LayoutInflater inflater = getLayoutInflater();
View customView = inflater.inflate(R.layout.YOUR_LAYOUT_INFLATER, null);
TextView text = (TextView)customView.findViewById(R.id.YOUR_TEXT_VIEW);
text.setText("BlaBlaBlaBlaBla");

为什么不将 TextView 直接放在 Layout 中并简单地做

TextView text = (TextView)findViewById(R.id.YOUR_TEXT_VIEW);
text.setText("BlaBlaBlaBlaBla");

?

于 2013-07-25T19:31:28.583 回答
0

尝试删除 params.addRule(RelativeLayout.BELOW, addcnvrtTime)?

于 2013-07-25T16:46:16.697 回答