将CardView添加到FrameLayout会忽略CardView的XML文件

时间:2016-06-16 01:17:10

标签: java android xml layout view

在我的MainActivity中,我使用FloatingActionButton以编程方式将CardViews添加到现有容器(FrameLayout)。

但是当我添加CardView时,所有LayoutParams(例如宽度,高度,边距等)都会被忽略。有没有办法使用XML文件中指定的参数?

这是我的代码:

card_view.xml

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/cardview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="16dp"
    card_view:cardCornerRadius="2dp"
    card_view:cardBackgroundColor="@color/cardViewBackground">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="example Text" />

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

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />

        <TextView
            android:id="@+id/textViewDate"
            android:text="@string/default_main_activity_msg"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:textColor="@color/colorPrimary"
            android:textSize="20sp"
            android:textAlignment="center"
            android:padding="16dp" />

        <FrameLayout
            android:id="@+id/container_body"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:clickable="true"
            android:src="@drawable/ic_fab_add"
            android:layout_gravity="end"
            android:onClick="addCard"
            android:visibility="gone"/>

    </LinearLayout>


    <fragment
        android:id="@+id/fragment_navigation_drawer"
        android:name="com.life_hacks.liftnotes.activity.FragmentDrawer"
        android:layout_width="@dimen/nav_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:layout="@layout/fragment_navigation_drawer"
        tools:layout="@layout/fragment_navigation_drawer" />

</android.support.v4.widget.DrawerLayout>

最后我用来添加CardView的代码:

public void addCard(View v){
    View cardView = View.inflate(getApplicationContext(), R.layout.card_view, null);
    FrameLayout container = (FrameLayout) findViewById(R.id.container_body);
    if(container != null){
        container.addView(card_view);
    }
}

1 个答案:

答案 0 :(得分:1)

要正确应用XML定义的layout_*的{​​{1}}属性,必须将保留它的View提供给ViewGroup。在这种情况下,这意味着您需要将LayoutInflater作为container调用中的最后一个参数传递。这样做还会导致虚增View.inflate()自动添加到View,因此您不能使用ViewGroup拨打电话,或者您获得addView()

此外,由于您要向IllegalStateException添加多个View,因此container似乎比LinearLayout更合适。我还要提一下,如果您计划添加大量额外的FrameLayoutViewListView最终可能会成为更好的选择。