ScrollView在我的视图中不起作用

时间:2015-07-15 06:53:16

标签: android android-scrollview

我希望我的视图可滚动但不起作用。我已经检查但无法找到问题。但是,滚动视图在屏幕的某些部分可见,但最后一个按钮从未显示 这是代码:

{
row=sheet.createRow(0);
cell=row.createCell(0);
cell.setCellValue("header");
cell=row.createCell(1);
sheet.addMergedRegion(new CellRangeAddress(0,0,0,1));
row=sheet.createRow(1);
cell=row.createCell(0);
cell.setCellValue("Keys");
cell=row.createCell(1);
cell=row.setCellValue("Values");
row=sheet.createRow(2);
cell=row.createCell(0);
cell.setCellValue("No data");
cell=row.createCell(1);
sheet.addMergedRegion(new CellRangeAddress(1,1,0,1);
sheet.autoSizeColumn(0);
}

2 个答案:

答案 0 :(得分:0)

再添加一个包含所有其他LinearLayout

LinearLayouts

检查Doc

  

ScrollView是一个FrameLayout,意味着您应该在其中放置一个包含要滚动的全部内容的子项;这个子本身可能是一个具有复杂对象层次结构的布局管理器。

答案 1 :(得分:0)

使用ScrollView的一切都很好。

android:layout_marginTop="32dp"
        android:layout_marginBottom="32dp"<br>

这段代码是你的罪恶。由于您已为第一个孩子提供保证金,因此未显示完整内容。请将其更改为

android:paddingBottom="32dp"
        android:paddingTop="32dp"