我正在尝试开发Android应用程序,我需要一个特定的布局。
我想要实现一个由屏幕顶部的图像视图和网格视图底部组成的活动。
布局是静态的,无法改变。
我怎么能意识到它?
这是我的代码:
<?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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="info.MainActivity"
tools:showIn="@layout/activity_main">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ovada"/>
</LinearLayout>
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="2"
android:columnWidth="300dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="5dp"
android:gravity="center"
android:stretchMode="columnWidth" >
</GridView>
</RelativeLayout>
实际上这段代码并不像我想的那样工作。
****编辑1 ****
好的,我有一个问题:
1)我得到的是:
当我向下滚动&#34;页面&#34;我想滚动所有页面的内容,而不仅仅是网格视图......
答案 0 :(得分:0)
将此添加到您的LinearLayout:
android:id="@+id/linear_id"
android:alignParentTop="true"
和GridView
android:layout_below="@id/linear_id
我还建议你摆脱线性布局,因为我没有看到添加它的任何用途。
答案 1 :(得分:0)
对于ListView以及GridView,将layout_height设置为wrap_content通常不是一个好主意。 &#34; WRAP_CONTENT&#34;意思是让我像我的孩子一样大。这很难找到listView和GridView。最好将高度设置为match_parent。