滚动视图中gridlelayout的使用
Usage of gridlelayout within scrollview
您好,我用亲戚 layout/scrollview/gridlelayout 创建了一个 activity,但我的应用程序没有打开。我的错误是什么?不是在 scrollview 中使用 gridlelayout 吗?
您好,我用 layout/scrollview/gridlelayout 创建了一个 activity,但我的应用程序没有打开。我的错误是什么? gridlelayout 不是在 scrollview 中使用吗?
非常感谢。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.peg.MainActivity">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="1"
android:rowCount="1">
<Button
android:id="@+id/s"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@drawable/s" />
<Button
android:id="@+id/hur"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@drawable/hur" />
<Button
android:id="@+id/mil"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@drawable/mil" />
<Button
android:id="@+id/ysr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@drawable/ysr" />
</GridLayout>
</ScrollView>
</RelativeLayout>
我认为你的问题在于项目计数你有 4 个按钮,但只有一行,只有一个单元格,试试:
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:rowCount="2">
如果您的观点变得更复杂,我建议您使用 RecyclerView。
试试这个
你在 Gridlayout
中增加 android:columnCount="2"
和 android:rowCount="2"
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:orientation="horizontal"
android:rowCount="2">
<Button
android:id="@+id/s"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/hur"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/mil"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/ysr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@mipmap/ic_launcher" />
</GridLayout>
</ScrollView>
</RelativeLayout>
输出
您好,我用亲戚 layout/scrollview/gridlelayout 创建了一个 activity,但我的应用程序没有打开。我的错误是什么?不是在 scrollview 中使用 gridlelayout 吗? 您好,我用 layout/scrollview/gridlelayout 创建了一个 activity,但我的应用程序没有打开。我的错误是什么? gridlelayout 不是在 scrollview 中使用吗?
非常感谢。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.peg.MainActivity">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="1"
android:rowCount="1">
<Button
android:id="@+id/s"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@drawable/s" />
<Button
android:id="@+id/hur"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@drawable/hur" />
<Button
android:id="@+id/mil"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@drawable/mil" />
<Button
android:id="@+id/ysr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@drawable/ysr" />
</GridLayout>
</ScrollView>
</RelativeLayout>
我认为你的问题在于项目计数你有 4 个按钮,但只有一行,只有一个单元格,试试:
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:rowCount="2">
如果您的观点变得更复杂,我建议您使用 RecyclerView。
试试这个
你在 Gridlayout
中增加android:columnCount="2"
和 android:rowCount="2"
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:orientation="horizontal"
android:rowCount="2">
<Button
android:id="@+id/s"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/hur"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/mil"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="0"
android:background="@mipmap/ic_launcher" />
<Button
android:id="@+id/ysr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_margin="20dp"
android:layout_row="1"
android:background="@mipmap/ic_launcher" />
</GridLayout>
</ScrollView>
</RelativeLayout>
输出