TextView not being displayed / Relative Layout

buzz

New Member
This might seem like a very easy question for some of you folks, but I can't find a way to display my TextView even after trying numerous solutions proposed on this site. Not that I am using the built-in Eclipse XML tool for Android and that the TextView is visible on this graphical layout. Here's what I've got so far : \[code\]<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/home_layout"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><ImageView android:contentDescription="@string/no_of_screens" android:id="@+id/imageViewHome" android:layout_width="290dp" android:layout_height="212dp" android:layout_gravity="center_horizontal" android:paddingTop="40dp" android:src="http://stackoverflow.com/questions/11016695/@drawable/logo" /><RelativeLayout android:id="@+id/relativeid" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" > <Button android:id="@+id/launch_button" android:layout_width="100dp" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="80dp" android:text="@string/launch" /> <Spinner android:id="@+id/spinner1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/launch_button" android:layout_marginRight="20dp" android:layout_toLeftOf="@+id/launch_button" android:entries="@array/num_array" android:prompt="@string/screen_prompt" android:textSize="8pt" /> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/launch_button" android:layout_alignBottom="@+id/launch_button" android:layout_marginRight="16dp" android:layout_toLeftOf="@+id/spinner1" android:text="@string/no_of_screens" android:textAppearance="?android:attr/textAppearanceMedium" /></RelativeLayout></LinearLayout>\[/code\]As for now, all of the other elements are being displayed correctly. Any help would be greatly appreciated!Thanks
 
Back
Top