在Android Studio中使用子级webview隐藏cardview

时间:2017-06-29 16:32:16

标签: android android-layout

我目前正在使用android studio作为仪表板来显示实时数据。

<android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="190dp"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="5dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <WebView
                android:id="@+id/webviewCO2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="CO2"
                android:textAppearance="@style/TextAppearance.AppCompat.Title"
                android:textColor="@color/background_floating_material_dark"
                android:layout_marginTop="5dp"
                android:layout_marginLeft="5dp" />

            <TextView
                android:id="@+id/CO2_ti"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textColor="#000000"
                android:text="-"
                android:textSize="40dp"
                android:textAlignment="center"
                android:layout_marginTop="5dp" />

        </LinearLayout>

    </android.support.v7.widget.CardView>

这是我的信息中心的其中一个组件。但是,有些设备没有CO2传感器,在这种情况下,我想在视图中完全隐藏它。
当我有webview时,是否有某种代码来获取“父元素”,就像在html中一样,这样我就可以将CardView的可见性设置为GONE?
我目前能够像这样获得网页视图

WebView webViewCO2;
webViewCO2 = (WebView) view.findViewById(R.id.webviewCO2);

我是否有类似的事情来获取cardView以便我可以更改其可见性? (也许如果我给了cardView一个id?)

1 个答案:

答案 0 :(得分:0)

CardView cardView = (CardView) view.findViewById(R.id.cv_id);

cardView.setVisibility(View.GONE)

做了这个伎俩