which layout u r using ? use relative layout. Just go thru the documentation of layouts before start coding it will save ur "time" ........
On Sat, Nov 26, 2011 at 1:29 AM, jaggu <[email protected]> wrote: > Hi > i have tried like what you send bet both the texts are coming line bye > line: > preciption > preciption > > > > On Sat, Nov 26, 2011 at 1:19 AM, Jovish P <[email protected]> wrote: > > 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 <[email protected]> wrote: > >> > >> On Fri, Nov 25, 2011 at 1:00 PM, jaggu <[email protected]> > 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 <[email protected] > > 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 - 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 > [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 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 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 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

