我有一個2-dim。 ImageViews數組。它們以編程方式設置爲RelativeLayout。但是當我啓動應用程序時,他們根本不會出現。 這是我的代碼:ImageViews以編程方式設置不出現
private void setMap(ImageView[][] fields){
RelativeLayout relLay = (RelativeLayout) findViewById(R.id.screen);
OnClickListener listener = new MyOnClickListener();
for (int i = 0; i < numFieldsHeight; i++){
for (int j = 0; j < numFieldsWidth; j++){
ImageView img = new ImageView(MapActivity.this);
img.setImageResource(R.drawable.map);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
if (j != 0)
params.addRule(RelativeLayout.RIGHT_OF, fields[i][j-1].getId());
else
params.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
if (i != 0)
params.addRule(RelativeLayout.BELOW, fields[i-1][j].getId());
else
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
params.height = fieldLength;
params.width = fieldLength;
img.setVisibility(View.VISIBLE);
img.setId(getFieldId(j,i));
img.setOnClickListener(listener);
fields[i][j] = img;
relLay.addView(fields[i][j], params);
}
}
}
和
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000" >
<RelativeLayout
android:id="@+id/relLayDiffSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
</RelativeLayout>
<RelativeLayout
android:id="@+id/screen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="#222222" >
</RelativeLayout>
</RelativeLayout>
的RelativeLayout的 「屏幕」 的進一步屬性在代碼中設置。 但是,這工作,我可以看到RelativeLayout,只是ImageViews丟失。
沒有拋出異常。請幫幫我!
------!編輯!------
我很抱歉,這段代碼實際上是在工作。問題是我忘記將變量fieldLength設置爲不同於0的東西。 非常感謝您的幫助! :)
什麼佈局你想要有?這看起來像一個GridView,所以你爲什麼不使用GridView?也許一個relLay.invalidate()會顯示添加的圖像。 –
發佈一條XML的活動請 –
invalidate()沒有幫助 – Garrarufa