3

我有两个android:id

例如:[ R.id.custom_font] 和 [ R.id.product_name]

在 .java 文件中

 TextView tv = (TextView)findViewById(R.id.custom_font);
    Typeface cFont = Typeface.createFromAsset(getAssets(), "fonts/jcc.ttf");
    tv.setTypeface(cFont);

// Adding items to listview
    adapter = new ArrayAdapter<String>(this, R.layout.list_item, R.id.product_name,  products);
    lv.setAdapter(adapter);

当我将它们放在一个文本视图中时,它会显示一条错误消息 [属性“android:id”已为元素“TextView”指定]

在 .xml 文件中

    <TextView

        android:textColor="?android:textColorPrimary"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/custom_font"
        android:id="@+id/product_name" //Attribute "android:id" was already specified for element "TextView"
        android:textSize="15sp" />

如何在单个文本视图中传递两个 android:id?

提前致谢。

4

2 回答 2

3

不,这是不可能的。您只能将一个android:id与一个组件关联。

于 2012-11-30T15:10:36.117 回答
0

我没有看到一个视图有两个 ID 的意义......

只需R.id.custom_font在以下行中再次使用:

    adapter = new ArrayAdapter<String>(this, R.layout.list_item, R.id.custom_font,  products);
于 2012-11-30T15:14:56.977 回答