方格 - XML

时间:2016-05-11 15:44:39

标签: android xml grid

在我的学习中,我必须做一个Android应用程序,从气象站检索天气数据。这些将以块显示。 这些块将分为4列和2行。

enter image description here

所以我想创建一个4列和2行的正方形网格来提供块。

有人会有一个解决方案来帮我创建这个网格吗?

1 个答案:

答案 0 :(得分:0)

有很多选择: 1.您可以使用GridLayoutManager选择回收站视图

<android.support.v7.widget.RecyclerView
  android:id="@+id/main_grid"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:padding="2dp"
  />

因此,在内部活动中,您将执行类似

的操作
mRecyclerView.setLayoutManager(new GridLayoutManager(getContext(), COLUMN_COUNT));

2。您选择网格视图

<GridView
android:id="@+id/grid"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="true"
android:horizontalSpacing="2dp"
android:numColumns="4"
android:padding="4dp"
android:stretchMode="columnWidth"/>

对于固定项目大小,您应该使用

<android.support.v7.widget.GridLayout
  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="wrap_content"
  app:columnCount="4"
  app:orientation="horizontal"
  >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    />
  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    />

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

确保将其添加到您的app gradle中

compile 'com.android.support:gridlayout-v7:23.0.1'