Results 1 to 2 of 2
- 10-26-2011, 06:44 PM #1
Member
- Join Date
- Jan 2011
- Posts
- 93
- Rep Power
- 0
I embedded RelativeLayout in a LinearLayout, but can't see widgets in LinearLayout
This is the XML Code. The problem is that I can't see the textView tvDisplayName, although I don't get any errors. Why is this?
Thanks for your help?
Java Code:<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/llLinear" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dp"> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dp" android:id="@+id/rlRel"> <TextView android:id="@+id/tvName" android:text="Name:" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp"/> <EditText android:id="@+id/etName" android:text="Enter Name Here" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/tvName" android:layout_alignBaseline="@id/tvName"> </EditText> <Button android:id="@+id/btnOK" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Okay" android:layout_below="@id/etName" android:layout_alignRight="@id/etName"> </Button> <Button android:id="@+id/btnCancel" android:text="Cancel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/btnOK" android:layout_alignBottom="@id/btnOK"/> </RelativeLayout> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/tvDisplayName" android:text="Test"> </TextView> </LinearLayout>
- 11-15-2011, 11:21 PM #2
Member
- Join Date
- Oct 2011
- Posts
- 65
- Rep Power
- 0
Similar Threads
-
Custom alignment of SWT widgets inside Composite
By venkat.eclipse in forum SWT / JFaceReplies: 2Last Post: 02-16-2011, 08:49 PM -
getting problem in disposing the widgets
By thendral m in forum SWT / JFaceReplies: 7Last Post: 01-12-2010, 08:37 AM -
How to create widgets on some event
By sarbuland in forum Advanced JavaReplies: 0Last Post: 02-06-2008, 08:08 PM -
How to create widgets dynamically
By sarbuland in forum Advanced JavaReplies: 0Last Post: 02-06-2008, 08:08 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks