gpt4 book ai didi

Android:ScrollView 和 RelativeLayout 不工作

转载 作者:行者123 更新时间:2023-11-29 21:03:36 25 4
gpt4 key购买 nike

我正在制作布局,我需要在所有组件之外添加一个 ScrollView 。正如您在下图中看到的那样,出于某种原因我放置所有组件的 RelativeLayout 不会填充父级,而是包装内容。但这会影响 ExpandableListView,其中仅显示一个没有子项的组项。我希望我的 RelativeLayout 填充父对象而不是换行。您可能会说可扩展列表可能会导致这种情况,但我尝试过并且没有它并且再次包装内容而不填充父级。

activity_product.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >


<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >


<com.daimajia.slider.library.SliderLayout
android:id="@+id/slider"
android:layout_width="match_parent"
custom:pager_animation="Default"
custom:auto_cycle="true"
custom:indicator_visibility="visible"
custom:pager_animation_span="1100"
android:layout_alignParentLeft="true"
android:layout_height="200dp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="-35%"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:textSize="25dp"
android:background="@color/orange"
android:layout_marginBottom="71dp" />

<ExpandableListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/expandableListView"
android:layout_below="@+id/slider"
android:layout_alignParentLeft="true" />


</RelativeLayout>
</ScrollView>
</LinearLayout>

截图 enter image description here

最佳答案

尝试这种方式,希望这能帮助您解决问题。

activity_main.xml

<ExpandableListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/expandableListView"/>

header.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="-35%"
android:id="@+id/textView"
android:textSize="25sp"
android:background="@color/orange"/>

<com.daimajia.slider.library.SliderLayout
android:id="@+id/slider"
android:layout_width="match_parent"
custom:pager_animation="Default"
custom:auto_cycle="true"
custom:indicator_visibility="visible"
custom:pager_animation_span="1100"
android:layout_height="200dp"/>
</LinearLayout>

MainActivity.java

public class MainActivity extends Activity {

private ExpandableListView expandableListView;
private TextView textView;
private SliderLayout slider;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
expandableListView = (ExpandableListView) findViewById(R.id.expandableListView);

View header = LayoutInflater.from(this).inflate(R.layout.header,null);
textView = (TextView) findViewById(R.id.textView);
slider = (SliderLayout) findViewById(R.id.slider);
expandableListView.addHeaderView(header);
expandableListView.setAdapter(YourExpandableListViewAdapterHere);

}
}

关于Android:ScrollView 和 RelativeLayout 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25203524/

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