[android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread n179911
Basically, I want: --- | ImageView | TextView fill up the rest| ImageView | --- How can I do that? I have put

Re: [android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread Narendra Bagade
use android:layout_marginLeft or android:paddingLeft Narendra On Wed, Feb 10, 2010 at 7:47 PM, n179911 n179...@gmail.com wrote: Basically, I want: --- | ImageView | TextView fill up the rest|

Re: [android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread n179911
Thanks. But I want android framework to align my ImageView with its parent for me. Instead of adjust it myself pixel by pixel. On Wed, Feb 10, 2010 at 6:24 AM, Narendra Bagade bagadenaren...@gmail.com wrote: use android:layout_marginLeft  or android:paddingLeft Narendra On Wed, Feb 10,

[android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread NoraBora
It seems to me in the 2nd ImageView android:layout_toRightOf=@id/text and android:layout_alignParentRight=true conflict each other. try removing android:layout_toRightOf=@id/text On Feb 10, 11:28 pm, n179911 n179...@gmail.com wrote: Thanks. But I want android framework to align