Match_parent在动态添加的GridLayout上

时间:2017-08-15 07:01:02

标签: c# android android-layout xamarin.android

我在GridLayout中有一些TextView。 GridLayout在运行时动态膨胀,然后添加到主布局。我的boxitem(GridLayout)的宽度正确缩放,但高度似乎总是包裹内容。我希望高度与父母相匹配。

main.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/CenterLayout"
    android:background="#ffffff"/>

border.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
  <stroke
      android:width="2dp"
      android:color="#000000" />
</shape>

BoxItem.axml:

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:rowCount="1"
    android:columnCount="2"
    android:background="@drawable/border"
    android:padding="10px">
    <TextView
        android:text="test: "
        android:id="@+id/TextView1"
        android:textColor="#009900"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp" />
    <TextView
        android:text="testy Mctestface"
        android:id="@+id/Shelf"
        android:textColor="#009900"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp" />
</GridLayout>

这是我的On Create

protected override void OnCreate(Bundle bundle)
{
    base.OnCreate(bundle);
    SetContentView(Resource.Layout.Main);
    var view = LayoutInflater.Inflate(Resource.Layout.BoxItem, null);
    FindViewById<LinearLayout>(Resource.Id.CenterLayout).AddView(view);
}

1 个答案:

答案 0 :(得分:0)

您可以在找到视图时向BoxItem.axml添加LayoutParameters规则,例如:

var view = LayoutInflater.Inflate(Resource.Layout.BoxItem, null);
view.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent);
FindViewById<LinearLayout>(Resource.Id.CenterLayout).AddView(view);

这将解决动态添加视图时的布局参数问题。