我有两个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?
提前致谢。