我有两个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?
提前致谢。
答案 0 :(得分:2)
不,这是不可能的。您只能与一个组件关联一个android:id
。
答案 1 :(得分:0)
我没有看到为一个视图提供两个ID ...
在以下行中再次使用R.id.custom_font
:
adapter = new ArrayAdapter<String>(this, R.layout.list_item, R.id.custom_font, products);