gpt4 book ai didi

android - 以编程方式更改我的 relativeLayout 的样式

转载 作者:行者123 更新时间:2023-11-29 13:59:31 26 4
gpt4 key购买 nike

我有这个 xml:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/FragmentSecondary" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_alignParentTop="true"/>

<RelativeLyout>

我的风格是 style="@style/FragmentSecondary",想通过编程方式将其更改为 style=@style/FragmentTrains。我不想重写另一个 xml。我需要把它写在代码中。我该怎么做?

最佳答案

我不相信您可以通过编程方式设置样式。为了解决这个问题,您可以创建一个模板布局 xml 文件并指定样式,例如在 res/layout 中创建 tvtemplate.xml,内容如下:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is a template"
style="@style/my_style" />

然后对其进行膨胀以实例化您的新 TextView:

TextView myText = (TextView)getLayoutInflater().inflate(R.layout.tvtemplate, null);

希望这对您有所帮助。

另请参阅 LINK & set style from code

关于android - 以编程方式更改我的 relativeLayout 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10177672/

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