这是我的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
答案 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>