我是
Android的初学者,并且是我的第一个Android应用程序.我的’关于’菜单项,当点击显示一个alertdialog与一个很长的消息.
我一直在尝试不同的方法来使其滚动,但我不能.我已经尝试在stackoverflow上阅读不同的问题,但他们没有为我工作.这是我的警报对话框代码.
我一直在尝试不同的方法来使其滚动,但我不能.我已经尝试在stackoverflow上阅读不同的问题,但他们没有为我工作.这是我的警报对话框代码.
AlertDialog.Builder alertDialog = new AlertDialog.Builder(this); alertDialog.setTitle("Title"); alertDialog.setMessage("Here is a really long message."); alertDialog.setButton("OK",null); AlertDialog alert = alertDialog.create(); alert.show();
有谁能详细解释一下如何使其滚动?
任何帮助或建议将不胜感激!
解决方法
这个解决方案是从
this post开始.
为了使视图可滚动,它必须嵌套在ScrollView容器中:
<ScrollView> <LinearLayout android:orientation="vertical" android:scrollbars="vertical" android:scrollbarAlwaysDrawVerticalTrack="true"> <TextView /> <Button /> </LinearLayout> </ScrollView>
请注意,ScrollView容器只能有一个子版式视图.例如,将TextView和Button放在没有LinearLayout的ScrollView中是不可能的.