Android динамический XML - PullRequest
       1

Android динамический XML

0 голосов
/ 22 ноября 2011

У меня есть 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 атрибуты, потому что это исправит позиции, и все будет перекрываться, если ширина динамических данных будет неправильной. Помогите!

Ответы [ 2 ]

1 голос
/ 22 ноября 2011

Использовать относительный макет. Вот пример относительной компоновки http://developer.android.com/resources/tutorials/views/hello-relativelayout.html

0 голосов
/ 22 ноября 2011

Если ваша проблема связана только с макетом, просто заключите все это в LinearLayout и установите вес для середины TextView.

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <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"
        android:layout_weight="1">
    </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>
</LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...