IT Nursery
Is there a way to bold the text in a TextView via XML? <TextView android:textSize="12dip" android:textAppearance="bold" -> ?? </TextView> Thanks 6 Answers 6
  • June 2, 2022
  • 0 Comments
IT Nursery
I want a simple TextView to behave the way simple_list_item_1 in a ListView does. Here’s the XML: <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center" android:focusable="true" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" android:background="@android:drawable/list_selector_background" /> Everything works...
  • May 30, 2022
  • 0 Comments