Hi guys,

I have doubt about layout..........
RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android";
  android:id="@+id/layercontainer"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="#ffffff">
  <TextView
        android:id="@+id/existingbillers_header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/background_with_out_logo"
        android:gravity="center"
        android:text="Select Existing Billers"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#ffffff"
        android:textSize="20sp"
        android:textStyle="bold" />

  <RelativeLayout
      android:id="@+id/*existing_list*"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@+id/existingbillers_header">

   <ListView
       android:id="@android:id/list"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:layout_below="@+id/text1" />

   <TextView
    android:id="@+id/text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:padding="10dp"
    android:textSize="16sp"
    android:textColor="#000000"
    android:typeface="sans"/>
   <ImageView
    android:id="@+id/image1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"/>
   </RelativeLayout>
</RelativeLayout>

i want to get the *existing_list id....how can i get it pls help me*
-- 
*Thanks & Regards*
*K.Arun Kumar*

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to