我試圖在另一個滾動視圖中添加滾動視圖。以編程方式設置佈局參數
它應該看起來像就是:
scroll view
linear layout
myprogramaticscroll view
myprogramticlinear layout
myprogramticbutton
end button
end layout
end scroll
end linear
end scroll
我想補充的是內滾動的看法。它在那裏,但我需要知道如何正確設置參數,以便我可以看到我的滾動視圖中的整個按鈕。我只看到它的一部分,我需要設置程序化線性佈局和滾動視圖的寬度高度和ID。我該怎麼做呢?這是我到目前爲止有:
//the layout i'm putting my scrollview/linearlayout/button in
LinearLayout l = (LinearLayout) findViewById(R.id.linearLayoutFavorites);
ScrollView scroll = new ScrollView(this);
LinearLayout nl = new LinearLayout(this);
ImageButton yourButton = new ImageButton(this);
nl.addView(yourButton);
scroll.addView(nl);
l.addView(scroll);