0

我在 XML 文件中声明了一个视图,我想通过代码定义它,但是当我建立它时,什么都没有显示。你能帮助我吗?

这是我的 XML 文件:

[...]

<View
        android:id="@+id/marco_container"
        style="@style/wrapFull"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" /> 

[...]

我这样定义它:

setContentView(R.layout.marco);
View view = (View) findViewById(R.id.marco_container);
view.inflate(getApplicationContext(), R.layout.prueba, null);

我也尝试通过这种方式声明它:

view = View.inflate(getApplicationContext(), R.layout.prueba, null);

这是prueba.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView android:text="Prueba" style="@style/wrapContent" 
    android:layout_gravity="center"/>


</FrameLayout>
4

3 回答 3

1

这不是视图视图。这是您的自定义视图,只需创建一个扩展 FrameLayout 的自定义视图,并在构造函数内部扩展您的视图。

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER...);
View view = inflater.inflate(getApplicationContext(), R.layout.prueba, this);

并在您的主要 xml 中放置:

<com.my.path.CustomView
    android:id="@+id/marco_container"
    style="@style/wrapFull"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" /> 

在你的课堂上:

setContentView(R.layout.marco);
CustomView view = (CustomView) findViewById(R.id.marco_container);
于 2013-01-09T09:03:26.770 回答
0

你需要这样做:

View view2 = view.inflate(this, R.layout.prueba, null);
((ViewGroup)view).addView(view2);

当然view必须是某种ViewGroup( RelativeLayout, LinearLayout, 等)

于 2013-01-09T08:43:43.437 回答
0
setContentView(R.layout.marco);
LinearLayout li = (LinearLayout) findViewById(R.id.marco_container);
View view = getLayoutInflater().inflate(R.layout.prueba, li, false);
li.addView(view);
于 2013-01-09T08:48:49.760 回答