水平滚动网格视图
|
我知道在Android中不可能水平滚动网格视图。但是我正在做的是在水平滚动视图内动态添加图像按钮,如下所示:
public class HorizontalScroller extends Activity {
static int l=0;
private Rect mTempRect = new Rect();
static int r1=0;
static int t=0;
static int b=0;
static int x=0;
static int y=0;
//Button[] b1 = new Button[100];
ImageButton btn[][] = new ImageButton[10][10];
//ImageButton b1 = new ImageButton(this);
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LinearLayout rl = (LinearLayout)findViewById(R.id.widget92);
LinearLayout.LayoutParams params1 = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
for(int i=0;i<4;i++)
{
for(int j=0;j<10;j++)
{System.out.println(\"helo\");
/* l=l+100;
r1=r1+100;
t=t+100;
b=b+100;*/
//button();
//ImageButton btn=new ImageButton(this);
/* Rect r = mTempRect;
r.left=10;
r.top=10;
r.right=10;
r.bottom=10;
btn[i][j].getDrawingRect(r);*/
//btn[i][j].setId(j);
Rect r = mTempRect;
r.set(0,0,0,0);
Rect r2 = mTempRect;
r2.set(0,20,0,20);
btn[i][j]=new ImageButton(this);
btn[i][j]. setBackgroundResource(R.drawable.icon);
btn[i][j].setMinimumWidth(20);
btn[i][j].setMinimumHeight(20);
params1.setMargins(5, 5, 5,5);
rl.addView(btn[i][j],params1);
System.out.println(\"1=\"+btn[i][j].getTop());
System.out.println(\"2=\"+btn[i][j].getLeft());
System.out.println(\"3=\"+btn[i][j].getRight());
System.out.println(\"4=\"+btn[i][j].getBottom());
}
}
}
}
但我将所有图像按钮都放在一行中。如何在类似网格的结构中实现它们?
没有找到相关结果
已邀请:
6 个回复
才脊烽馈低
中使用
,或者 保持水平
不变,但增加垂直
而不是直接添加图像。例如,纵向每3ѭ纵向添加三到四个图像,然后重新绘制以横向仅添加两个。 我将首先尝试“ 1”法。 PS1:下次,请尝试删除所有不相关的代码(其中的代码越少,越容易理解所做的事情)。 PS2:请记住,通常将
重定向到
,因此会丢失,因此我强烈建议您改用
。 完整的例子 使它适应onCreate()方法或您需要的任何地方:
我以一个非常简单的View为例:
浩挎
车料
枫湃揩乾纲
MainActivity.java:
添加以下方法:
希望这会帮助你。
填盖
2.将其添加到布局中 your_activity.xml
3.布局网格元素 为您的网格元素(grid_element.xml)创建一个布局。我创建了一个只有一个按钮的简单按钮。
4.创建一个适配器 受到此链接的极大启发:https://gist.github.com/gabrielemariotti/4c189fb1124df4556058
5.在您的活动中对其进行初始化:
俯乡骚钵皆
这里2是网格的列跨度