gpt4 book ai didi

android - 如何更改android :layout_alignParentRight runtime by java code

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:41:43 27 4
gpt4 key购买 nike

我有聊天 ListView ,其中发件人姓名应左对齐,收件人的回复应在右侧,反之亦然,当收件人成为发件人时。

这是我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>

<TextView android:id="@+id/chatmessagename"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:textSize="16sp" android:textStyle="bold"
android:paddingBottom="1dp" />
<TextView android:id="@+id/chatmessagedate"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:autoLink="none" />
<TextView android:id="@+id/chatmessagetext"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/chatmessagename"
android:autoLink="all" />

现在在运行时我想更改 textview 的 layout_alignParentRight 值。可以吗?

最佳答案

尝试:

... 
RelativeLayout.LayoutParams layoutParams =(RelativeLayout.LayoutParams)yourView.getLayoutParams();
layoutParams.addRule(RelativeLayout.ALIGN_PARENT_.....); //ALIGN_PARENT_RIGHT / LEFT etc.
yourView.setLayoutParams(params);
...

关于android - 如何更改android :layout_alignParentRight runtime by java code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9905305/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com