Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我安装了 android 支持包 r8,我想在GridLayout这里使用我到目前为止在我的 xml 文件中尝试过的内容
GridLayout
<android.support.v4.widget.GridLayout>
但是当我运行代码时,它告诉我找不到类,android.support.v4.widget.GridLayout 我打开了 jar 文件并查看包中没有GridLayout.class文件。任何人都知道如何使用GridLayout使用 android 支持包
android.support.v4.widget.GridLayout
GridLayout.class
GridLayout 的支持实现实际上是一个库项目,你需要将它包含在你自己的项目中。它可以在 extras/android/support/v7/gridlayout 下的 Android sdk 目录中找到。
此外,您需要<android.support.v7.widget.GridLayout>在布局中使用。
<android.support.v7.widget.GridLayout>