gpt4 book ai didi

java - 膨胀 View 与膨胀元素

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

我想膨胀 R.id.catText,但如果我自己膨胀它,它永远不会显示。如果我inflate R.id.assets(容器),那么两个元素都会正常显示。我只是不想要容器。如何在不膨胀 R.id.assets 的情况下膨胀 R.id.catText

此外,我可以膨胀 R.id.catText 到一个对象吗?例如。

TextView catText = inflater.inflate(R.id.catText);
someView.addView(new catText());

我的代码:

LinearLayout myRoot = (LinearLayout) findViewById(R.id.assets);
LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.assets, myRoot, false);

我的风格:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:padding="50px" android:id="@+id/assets">
<TextView android:id="@+id/catText" android:text="TextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#ff0000"></TextView>
</LinearLayout>

最佳答案

LayoutInflater 仅适用于 R.layout.*。如果您只想膨胀 TextView,您应该将它放在自己的布局 XML 文件中。如果您有时需要容器而不是其他容器,则可以在容器布局中包含 TextView

在 catText.xml 中:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/catText"
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ff0000"/>

在容器xml文件中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:padding="50px"
android:id="@+id/assets">
<include layout="@layout/catText"/>
</LinearLayout>

然后你可以给任何你需要的充气。

关于java - 膨胀 View 与膨胀元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6916497/

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