在向ScrollView
动态添加按钮方面,我需要一些帮助。我已经使用LinearLayout
了,但是很明显,我只能添加这么多的按钮,然后它们才不再出现在屏幕上。我的代码在下面,并附有其当前状态的图像。
我尝试用代码中的LinearLayout
来更改ScrollView
的每一次出现,但是当我运行它时,出现了一条错误,指出了ScrollViews can only have 1 direct child
的含义。
我不确定如何使它工作,所以如果有人可以给我一些指导,我将非常感激。
我的XML代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_below="@id/imageTextView"
android:layout_centerHorizontal="true">
</LinearLayout>
</RelativeLayout>
我的Java代码(我在其中动态创建按钮):
public class Main5Activity extends AppCompatActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main5);
LinearLayout layout = (LinearLayout) findViewById(R.id.mainLayout);
for (int i = 0; i < 6; i++)
{
LinearLayout row = new LinearLayout(this);
row.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
for (int j = 0; j < 4; j++)
{
final Button btnTag = new Button(this);
btnTag.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT));
btnTag.setText("" + (j + 1 + (i * 4)));
btnTag.setId(j + 1 + (i * 4));
row.addView(btnTag);
}
layout.addView(row);
}
}
}
当前布局的图像。
答案 0 :(得分:2)
是的ScrollView
只能生一个孩子,通常是ViewGroup
,例如LinearLayout
,RelativeLayout
等。
您需要用LinearLayout
包裹ScrollView
,如下所示:
<ScrollView>
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_below="@id/imageTextView"
android:layout_centerHorizontal="true"/>
</ScrollView>
或者,如果只有一个孩子,则可以将最高的RelativeLayout
更改为ScrollView
。