У меня есть xml
в Android, который
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="122px"
android:layout_marginTop="40px"
android:id="@+id/am"
android:text="@string/iam"
android:textColor="#000000" android:textSize="20px">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:layout_marginTop="40px"
android:id="@+id/jname"
android:textColor="#000000" android:textSize="20px" >
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/going"
android:text="@string/sloc"
android:textColor="#000000" android:textSize="20px">
</TextView>
Мой TextView
jname
будет динамическим, т. Е. Я буду заполнять место данными из JSON
. Я хочу, чтобы мои TextView
из id
jname
всегда приходились справа от TextView
с источником @string/iam
и слева от TextView
с источником @string/sloc
. Я не хочу определять layout_margin
атрибуты, потому что это исправит позиции, и все будет перекрываться, если ширина динамических данных будет неправильной. Помогите!