Android – 如何使此提醒对话框滚动?

前端之家收集整理的这篇文章主要介绍了Android – 如何使此提醒对话框滚动?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 Android的初学者,并且是我的第一个Android应用程序.我的’关于’菜单项,当点击显示一个alertdialog与一个很长的消息.
我一直在尝试不同的方法来使其滚动,但我不能.我已经尝试在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中是不可能的.

原文链接:https://www.f2er.com/android/310720.html

猜你在找的Android相关文章