Can you please make your your question little more clear ???

if you want to design a layout like this , it is very simple. You are using
same id for both textviews, may be because of that
you are facing  issues.


Preciption:preciption
Relhumidity:relhumidity


<TextView
       android:id="@+id/Preciption1"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:paddingLeft="20dp"
       android:text="Preciption" />
<TextView
       android:id="@+id/Preciption2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_toRightOf="@+id/Preciption1"
       android:paddingLeft="20dp"
       android:text="Preciption" />



   <TextView
       android:id="@+id/RelHumidity1"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:paddingLeft="20dp"
       android:layout_below="@+id/Preciption1"
       android:text="RelHumidity:" />
<TextView
       android:id="@+id/RelHumidity2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/RelHumidity1"
 android:layout_below="@+id/Preciption2"
          android:text="RelHumidity:" />








On Sat, Nov 26, 2011 at 1:02 AM, TreKing <treking...@gmail.com> wrote:

> On Fri, Nov 25, 2011 at 1:00 PM, jaggu <mjagadeeshb...@gmail.com> wrote:
>
>> each of the textview need to match the same text so i am getting the
>> data from the webservices
>>
>
> So set the text on the TextViews you need to match. I still don't know
> what your question is.
>
>
>>  :its coming down from the textview what i
>> asked the previous question
>>
>> this type i required in my layout i was faceing some issues its coming
>> down of the text because of iam reading that data from webservices .
>>
>
> None of that made any sense to me.
>
> On Fri, Nov 25, 2011 at 1:20 PM, jaggu <mjagadeeshb...@gmail.com> wrote:
>
>> can any one respond pls
>
>
> I responded to your original post within 12 minutes. If you need a faster
> response time than that, you're going to have to pay for it.
>
>
> -------------------------------------------------------------------------------------------------
> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
> transit tracking app for Android-powered devices
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> 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 post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to