Android - 如何在 GridLayout 中为自定义 LinearLayouts 设置边距?

Android - How to set margin to custom LinearLayouts in GridLayout?

我在将边距设置为我在 GridLayout 中多次使用的自定义线性布局 class 时遇到问题。 Gridlayout 放置在片段中。 这是fragment_grid.xml的代码:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="app_a_tize.expressme.Fragment.GridFragment"
android:layout_gravity="center">

<GridLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/orange"
    android:layout_margin="5dp"
    android:id="@+id/gridlayout_grid"></GridLayout>
</FrameLayout>

这是GridFragment.java的代码:

public class GridFragment extends Fragment {
public GridFragment() {
    // Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.fragment_grid, container, false);
}

@Override
public void onStart() { 
    super.onStart();
    GridLayout grid = (GridLayout) getView().findViewById(R.id.gridlayout_grid);
    grid.setRowCount(3);

    int tileHeight = (CategoryTileActivity.gridContentHeight -3 * 10) / 3;
    int amountofColumns = (int) CategoryTileActivity.gridContentWidth / tileHeight;
    grid.setColumnCount(amountofColumns);
    grid.setMinimumWidth((amountofColumns * tileHeight) + (5 * 20 ));

    for (int i = 0; i < 3 * amountofColumns; i++) {
    //fill the grid with the custom LinearLayout:
        grid.addView(new TileClass(getActivity(), tileHeight, tileHeight, "ToBeImplemented", "Button"));
    }

}
}

这是自定义LinearLayout的代码:

public class TileClass extends LinearLayout {
public TileClass(Context context, int height, int width, String image, String text) {
    super(context);
    this.setBackgroundResource(R.drawable.tile_button); //creates rounded layouts
    this.setMinimumHeight(height);
    this.setMinimumWidth(width);
    this.setOrientation(LinearLayout.VERTICAL);

    ImageView tileImage = new ImageView(context);

    Bitmap bMap = BitmapFactory.decodeResource(getResources(), R.drawable.tilephoto);
    Bitmap bMapScaled = Bitmap.createScaledBitmap(bMap, 100, 100, true);
    tileImage.setImageBitmap(bMapScaled);

    tileImage.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));

    TextView tileText = new TextView(context);
    tileText.setText(text);
    tileText.setTextColor(Color.WHITE);
    tileText.setGravity(Gravity.CENTER);

    addView(tileImage);
    addView(tileText);
}
}

当我 运行 Activity 时,我得到以下结果:

我上面显示的代码负责中间的橙色区域。

我需要的是:蓝色 "buttons"/LinearLayouts,在中间的橙色区域,有 5dp 的边距。所以剩下的橙色space被自定义的LinearLayouts占用了。

我不知道如何解决这个问题,我尝试了很多选项,但它们似乎都不适合我。从 MarginLayoutParams 到 params.setMargins(5,5,5, 5);在我代码中的几乎所有布局上。

我使用 Android Studio 2.1.2,支持最小 API 15。

感谢您的帮助!
对于你的想象,这一定是最终结果,我需要这样的保证金:

您必须如下所示制作 gridview 项目的自定义视图:-

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/categoryHeight"
    android:layout_marginLeft="@dimen/margin_5dp"
    android:layout_marginRight="@dimen/margin_5dp"
    android:layout_marginTop="@dimen/margin_7dp"
    android:background="@drawable/rounded_bg"
>

    <ImageView
        android:id="@+id/llRowItem"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:scaleType="fitXY"
        android:gravity="bottom"/>

        <TextView
            android:id="@+id/item_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/black_light"
            android:padding="@dimen/margin_5dp"
            android:layout_gravity="bottom"
            android:singleLine="true"
            android:textColor="@color/white"
            android:textSize="@dimen/font_size_16sp" />
</FrameLayout>

和内部适配器设置文本视图的颜色、背景、文本或图像视图的图像,无论您想要设置什么。