Android动态XML

发布于 2024-12-17 19:48:15 字数 1216 浏览 0 评论 0原文

我在 Android 中有一个 xml,它是

 <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 中的数据填充该位置。我想要的是我的 id jnameTextView 应始终位于具有源代码的 TextView 的右侧@string/iamTextView 左侧具有源 @string/sloc。我不想定义 layout_margin 属性,因为这会修复位置,并且如果动态数据的宽度不正确,所有内容都会重叠。帮助!

I have a xml in Android which is

 <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>

My TextView jname will be dynamic i.e. I will be filling the spot with the data from JSON. What I want is that my TextView of the id jname should always come to the right of the TextView having source @string/iam and left of TextView having source @string/sloc. I don't want to define layout_margin attributes because that would fix the positions and everything will overlap if the width of the dynamic data is not proper. Help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水晶透心 2024-12-24 19:48:15

如果您的问题纯粹在于布局,那么只需将所有内容包含在 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>

If your problem is purely with layout, then just enclose all of that in a LinearLayout and set a weight for the middle 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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文