HOW APPLY BLACK COLOR TO LIST VIEW TEXT?

  • Replies:0
Leonidas Savvides
  • Forum posts: 45

Sep 12, 2012, 4:02:25 PM via Website

1.
1HOW APPLY BLACK COLOR(android:textColor="@color/text_color")
2TO LIST VIEW TEXT?
3
4
5<RelativeLayout
6 android:layout_width="wrap_content"
7 android:layout_height="wrap_content"
8 android:layout_centerHorizontal="true"
9 android:layout_centerVertical="true"
10 android:padding="50dp"
11 >
12
13 <ListView
14 android:id="@+id/listView1"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:layout_centerHorizontal="true"
18 android:layout_centerVertical="true" >
19
20 </ListView>
21</RelativeLayout>

2.In a textview (about Game Help text) but do not specify size of text in sp, well this implies text should size on differ devices (screen densities) and non have this text size problems?

3.
With this in manifest means not permitted install in tablets?
1<supports-screens
2 android:smallScreens="true"
3 android:normalScreens="true"
4 android:largeScreens="true"
5 android:xlargeScreens="false"
6 />

— modified on Sep 12, 2012, 4:03:46 PM

Reply