我想充气 R.id.catText
,但如果我自己充气,它就不会显示。如果我给(容器)充气 R.id.assets
,那么两个元素都会显示得很好。我只是不想要容器。我怎样才能在不充气的 R.id.catText
情况下充气 R.id.assets
?
另外,我可以充气 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>