ScrollView内部的相对布局无法正常工作......!

时间:2016-11-09 07:58:04

标签: android android-layout android-scrollview android-relativelayout

这是我的abc.xml,其中我使用相对布局作为ScrollView中的父布局,我多次使用fillviewport和滚动条参数但它不起作用......

     AlertDialog.Builder alertBuilder = new AlertDialog.Builder(SelectorActivity.this);

     View view = LayoutInflater.from(SelectorActivity.this).inflate(R.layout.abc, null);

     alertBuilder.setView(view);
     AlertDialog d = alertBuilder.create();

     d.show();

这就是我实现这个的方式......

displayTower

1 个答案:

答案 0 :(得分:2)

在scrollview中添加LinearLayout,并在Linearlayout中放入Relative布局。

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:scrollbars="none">
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/SU_user_detail_parent_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/custom_background">

<More Components here..../>

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