这是我的舞台布局xml:
//--Class.h--
#ifndef MY_CLASS_H //include guards to make sure it only gets declared once
#define MY_CLASS_H
class MyClass
{
int _member;
public:
MyClass(); //ctor
~MyClass(); //dtor
int someMethod(int a, int b);
};
#endif
我的自定义gridview布局:
//--MyClass.cpp--
#include "MyClass.h" //include your declarations
MyClass::MyClass()
{
//constructor
}
MyClass::~MyClass()
{
//destructor
}
int MyClass::someMethod(int a, int b)
{
//code
}
我创建了一个app(肖像),我使用gridview来显示我的阶段,我有20个阶段(10个cols)。但我不能使用Horizontal Scrollview,所以我将scrollview旋转到-90并将子项旋转到90.我使用分辨率2:3,所以我使用layout_weight(线性布局)。但是我的ScrollView无法滚动,我该怎么做?