从XML文件添加的视图未显示在其父视图中

时间:2018-02-09 20:40:55

标签: java android android-layout android-studio android-view

在我的 Player 活动中,我试图通过调用addView来添加来自不同XML的视图:

    view = (ViewGroup)findViewById(R.id.player_ConstraintLayout);
    notifierView = LayoutInflater.from(view.getRootView().getContext())
                                 .inflate(R.layout.notifier, null);
    view.addView(notifierView);
    // view.invalidate();

Player 活动附带此关联的XML文件:

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

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/player_ConstraintLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.android.Player">

    ...

</android.support.constraint.ConstraintLayout>

我要添加的是notifier.xml:

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

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    android:translationZ="9dp"
    android:elevation="9dp">

</android.support.constraint.ConstraintLayout>

我调试了应用并检查了变量view我可以确认已添加notifierView并且位于view的子列表中。但是notifierView没有显示,即使我预计它是全屏大小和红色。当我在调试器中检查notifierView时,它显示其mTopmBottommLeftmRight变量都是0。我假设它意味着

android:layout_width="match_parent"
android:layout_height="match_parent"

被忽略了?或者还有其他原因我根本没有看到notifierView吗?

EDIT / UPDATE:

让我向您展示更多代码,因为前面的内容稍微简化了一些。

Player 活动中,我有:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_player);

    notifier = new Notifier((ViewGroup)findViewById(R.id.player_ConstraintLayout));

    ...

}

Notifier.java 我有

Notifier(ViewGroup view) {    
    handler = new android.os.Handler();    
    LayoutInflater inflater = LayoutInflater.from(view.getRootView().getContext());
    notifierView = inflater.inflate(R.layout.notifier, view, false);    
}

2 个答案:

答案 0 :(得分:3)

ConstraintLayout实际上并没有为其子女提供match_parent支持。您必须将此用于&#34;匹配父母&#34;宽度:

android:layout_width="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"

这对于&#34;匹配父母&#34;高度:

android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"

此外,您的LayoutInflater.inflate()来电应该更改。当您将null作为第二个参数传递时,您不会向系统提供足够的信息来了解如何解析膨胀视图上的layout_属性;你应该传递一个真正的父母(在这种情况下,view)。但是,如果您将null更改为view,则inflate()调用的返回值将会更改,因此您必须添加其他参数(attachToRoot)以确保其余的语义都没有改变。

LayoutInflater inflater = LayoutInflater.from(view.getRootView().getContext());
notifierView = inflater.inflate(R.layout.notifier, view, false);

答案 1 :(得分:1)

(代表问题作者发布解决方案)

无效缓存/重启帮助。 Android Studio有时会出错。