Fristly 私は android を初めて使用し、2 つの 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);
adapter = new ArrayAdapter<String>(this, R.layout.list_item, R.id.product_name, R.id.custom_font, 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" />
単一のテキスト ビューで 2 つの android:id を渡すにはどうすればよいですか?
または、親切に私を助けてくれる人は、これをダウンロードしてください
前もって感謝します。