Как насчет?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/nameText"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Symbol"
android:textStyle="bold"
android:textSize="24sp"
android:layout_width="100dp"
android:textColor="#4871A8"
android:paddingTop="2dip"
android:paddingLeft="5dip"
android:paddingBottom="1dip"/>
<TextView
android:id="@+id/changeText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:gravity="right"
android:textSize="18sp"
android:text="3.07(+1.08%)"
android:paddingTop="9dip"
android:paddingRight="5dip"
android:paddingBottom="1dip"/>
<TextView
android:id="@+id/priceText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/changeText"
android:gravity="right"
android:text="100"
android:textStyle="bold"
android:textSize="24sp"
android:textColor="#4871A8"
android:paddingTop="2dip"
android:paddingBottom="1dip"/>
</RelativeLayout>
РЕДАКТИРОВАТЬ: Вот как это выглядит:
Чувак, пожалуйста, идиза пределами глядя на код.Постарайтесь понять, что происходит, и, что более важно, попробуйте код!Вы сказали, что хотите сохранить его в том же порядке ... и что?Изменение порядка появления в RelativeLayout
не меняет положение компонента.На самом деле, существует очень много случаев, когда вы должны располагать элементы файла XML в определенном порядке, чтобы воспроизвести их ID, как я это делал в этом случае.