gpt4 book ai didi

android - 无法在android中以编程方式在 ScrollView 中添加线性布局

转载 作者:行者123 更新时间:2023-11-30 02:53:57 26 4
gpt4 key购买 nike

我需要务实地使用 scrollview,而在 scrollview 中包含 linearlayout 它显示错误,如 E/AndroidRuntime(22309): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sample.program/com.sample .program.details}: java.lang.IllegalStateException: 指定的 child 已经有一个 parent 。您必须先对 child 的 parent 调用 removeView()。

检查一下我的代码:

我想在 ScrollView 中添加我的线性布局

mScrollTolinear = (LinearLayout) findViewById(R.id.toscroll);

我的 ScrollView

ScrollView mScroll = new ScrollView(Appointmentdetails.this);
mScroll.addView(mScrollTolinear);

删除 View

mScrollTolinear.removeAllViews();
mScrollTolinear.removeView(mScrollTolinear);

尝试删除 View 之类的东西但没有运气,也尝试过使用谷歌但无法获得解决方案,任何建议或帮助都被高度接受。

我的 XML

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/whitebackground"
android:orientation="vertical"
>

<!-- <ScrollView -->
<!-- android:id="@+id/favscroll" -->
<!-- android:layout_width="fill_parent" -->
<!-- android:layout_height="wrap_content" -->
<!-- android:visibility="invisible" > -->

<LinearLayout
android:id="@+id/toscroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/topheaderbg" >

<ImageView
"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerInParent="true"
android:contentDescription="@string/app_name"
android:paddingLeft="10dip"
android:src="@drawable/listbutton" />

<TextView

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="@color/White"
android:textSize="16sp"
android:textStyle="bold" />

<ImageView

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerInParent="true"
android:contentDescription="@string/app_name"
android:paddingRight="10dip"
android:src="@drawable/notificationicon" />
</LinearLayout>
</LinearLayout>

谢谢

最佳答案

问题是您正在尝试添加一个从 XML 文件扩充的 View ,因此它已经有一个父 View (因为它已经位于 View 层次结构中)。而不是下面的

mScrollTolinear = (LinearLayout) findViewById(R.id.toscroll);

你必须实现这样的东西:

mScrollTolinear = getLayoutInflater().inflate(R.layout.your_layout_file, null);

还要记住,ScrollView 只能有一个 subview ,否则你会得到异常

UPD根据您的评论更新

因此,如果您想将 ScrollView 添加到 LinearLayout,则必须调用:

ScrollView scroll = new ScrollView(yourContext); //you may also want to specify LayoutParams for it
mScrollTolinear.addView(scroll);

希望我没有正确理解您的评论

关于android - 无法在android中以编程方式在 ScrollView 中添加线性布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23648250/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com