我正在尝试使整个布局可滚动但在这种情况下只滚动listview而不是整个布局。请告诉我如何才能使整个页面向上滚动而不仅仅是列表视图。感谢
我的XML文件
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridView
android:id="@+id/grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:columnWidth="100dp"
android:gravity="center"
android:horizontalSpacing="2dp"
android:numColumns="auto_fit"
android:paddingTop="2dp"
android:stretchMode="columnWidth"
android:verticalSpacing="2dp" />
</LinearLayout>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:text="More Devices"
android:textStyle="bold" />
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="3dp"
android:paddingLeft="3dp"
android:paddingTop="3dp" />
</LinearLayout>
我的MainActivity.java
package project.example.com.project;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.GridView;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class MainActivity extends Activity {
GridView grid;
String[] gridtext = {"Text 1", "Text 2", "Text 3", "Text 4", "Text 5", "Text 6", "Text 7", "Text 8", "Text 9"};
int[] gridimage = {R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img, R.drawable.img};
ListView listView;
String[] listtext = {"List 1", "List 2", "List 3", "List 4", "List 4", "List 4"};
int[] listimage = {R.drawable.image, R.drawable.image, R.drawable.image, R.drawable.image, R.drawable.image, R.drawable.image};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.list);
CustomGrid adapter = new CustomGrid(MainActivity.this, gridtext, gridimage);
grid = (GridView) findViewById(R.id.grid);
grid.setAdapter(adapter);
grid.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(MainActivity.this, "You Clicked at " + gridtext[+position], Toast.LENGTH_SHORT).show();
}
});
List<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
String[] from = {"txt", "img"};
int[] to = {R.id.list_text, R.id.list_image};
SimpleAdapter simpleAdapter = new SimpleAdapter(getBaseContext(), list, R.layout.list_row, from, to);
for (int i = 0; i < listtext.length; i++) {
HashMap<String, String> hashMap = new HashMap<String, String> ();
hashMap.put("txt", listtext[i]);
hashMap.put("img", Integer.toString(listimage[i]));
list.add(hashMap);
}
listView.setAdapter(simpleAdapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Toast.makeText(MainActivity.this, "You Clicked at " + listtext[+position], Toast.LENGTH_SHORT).show();
}
});
View header = getLayoutInflater().inflate(R.layout.header, null);
listView.addHeaderView(header);
}
}
答案 0 :(得分:0)
将ScrollView添加到xml文件中,该文件将包含列表视图和您要滚动的其他元素。 ScrollView只能容纳一个子视图。为了使整个屏幕可滚动,您必须在ScrollView中放置一个包含所有其他视图的布局。 LinearLayout,GridLayout,RelativeLayout都可以包含多个子视图(在单个父布局中嵌套布局和视图)。只需将ScrollView设置为整个屏幕的高度和宽度,您就可以拥有它。
答案 1 :(得分:0)
在这种情况下,您只需要像这样添加 ScrollView
:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
.
.
.
</ScrollView>
但请记住删除 xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
,这两行来自 LinearLayout
答案 2 :(得分:0)
<ScrollView 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=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<GridView
android:id="@+id/grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:columnWidth="100dp"
android:gravity="center"
android:horizontalSpacing="2dp"
android:numColumns="auto_fit"
android:paddingTop="2dp"
android:stretchMode="columnWidth"
android:verticalSpacing="2dp" />
</LinearLayout>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:text="More Devices"
android:textStyle="bold" />
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="3dp"
android:paddingLeft="3dp"
android:paddingTop="3dp" />
</LinearLayout>
</ScrollView>
答案 3 :(得分:0)
您应该将您的布局和视图放在ScrollView中
<LinearLayout>
<ScrollView>
<LinearLayout>
<GridView></GridView>
</LinearLayout>
<TextView></TextView>
<LinearLayout>
<ListView></ListView>
</LinearLayout>
</ScrollView>
</LinearLayout>
参考:How can I put a ListView into a ScrollView without it collapsing?
答案 4 :(得分:0)
我和你有完全相同的问题。我解决问题的方法始于用户Touhid指出的here:
将ListView放在ScrollView中从未受到启发。但如果你 想要发布类似XML的行为,我有三个选择:
删除ScrollView:删除ScrollView,您可以为ListViews提供一些与总布局相关的特定大小(或者 具体的dp或layout_weight)。
用LinearLayouts替换ListViews:您可以通过遍历item-list添加list-items并将每个item-view添加到 相应的LinearLayout通过膨胀视图&amp;设置相应的 数据(字符串,图像等)
- 醇>
如果您确实需要将ListView放在ScrollView中,则必须使ListViews不可滚动(实际上是相同的) 作为上面的解决方案2,但使用ListView代码),否则 布局将无法按预期运行。制作ListView 不可滚动,你可以阅读这个SO post,其中精确 我的解决方案就像下面的那个
就我而言:
解决方案1 - 删除ScrollView - 不是一个选项。创建 具有特定大小的ListView只是看起来很糟糕而且令人困惑。
我想尝试使用LinearLayouts替换ListViews ,但结果显示first hit on google搜索此建议:这不是一个好主意,特别是如果你的ListView包含很多物品。最好将标头添加到ListView或使用自定义NonScrollableListView类。由于标题在我的列表中看起来很糟糕,我决定不这样做。
所以似乎最后一个选择对我而言。我确实使我的ListViews不可滚动。而且效果很好。我找到的答案是here。更确切地说,Dedaniya HirenKumar的答案 - 于2014年7月8日10:21回答。 小心不要忘记答案的最后部分。仅创建不可滚动的listview java类并更改XML是不够的!您需要在链接到xml的Java文件中定义不可滚动的列表视图。另外请注意,将nonscrollable listview javaclass放入包中。