我有一個xml視圖,其中包含一個ScrollView(帶子LinearLayout)。將LinearLayouts添加到滾動視圖
...
<ScrollView
android:id="@+id/scrollView_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_marginTop="33dp" >
<LinearLayout
android:id="@+id/image_holder"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</LinearLayout>
</ScrollView>
...
我試圖動態地添加一些圖片,我想3每行。
private void createDice(LinearLayout ll, Integer required) {
ArrayList<Integer> images = new ArrayList<Integer>();
images.add(R.drawable.one);
images.add(R.drawable.two);
images.add(R.drawable.three);
images.add(R.drawable.four);
images.add(R.drawable.five);
images.add(R.drawable.six);
ScreenHelper screen = new ScreenHelper(MainActivity.this);
Map<String, Float> s = screen.getScreenSize();
Integer maxPerRow = (int) (s.get("width")/90); // images are 89px wide
Log.d(TAG, "max across::"+maxPerRow);
Integer rows = (required/maxPerRow);
Log.d(TAG, "rows::"+rows);
for (int i=0; i < rows; i++) {
Log.d(TAG, "i::"+i);
// create linear layout for row
LinearLayout llAlso = new LinearLayout(this);
llAlso.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
//llAlso.setOrientation(LinearLayout.HORIZONTAL);
for (int j=0; j < 3; j++) {
Log.d(TAG, "j::"+j);
// create/add image for the row
ImageView iv = new ImageView(this);
iv.setImageResource(images.get(i));
llAlso.addView(iv);
}
// add to main layout
ll.addView(llAlso, i);
Log.d(TAG, "adding to main view");
}
}
我正在與6.
問題所需參數值測試的是,圖像的第一行被添加,但是因爲它是獲取添加鄰近任一第二不第一行(因此不在屏幕上)而不在其下面。
關於如何實現我想要的輸出的任何想法?
這聽起來像你正在努力完成的非常適合'GridView',以及爲什麼你反對使用它? – 2013-03-20 16:56:29
@BrentHronik我不反對使用GridView(現在我知道),但即使不是最好的方法,我仍然願意完成我開始的任務。 – Rooneyl 2013-03-20 17:05:46