22

我是 android 的初学者,正在制作我的第一个 android 应用程序。我的“关于”菜单项,单击时会显示一个带有很长消息的 AlertDialog。我一直在尝试不同的方法使其可滚动,但我做不到。我曾尝试阅读有关 StackOverflow 的不同问题,但它们对我不起作用。这是我的 AlertDialog 代码。

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();

任何人都可以向我详细解释如何使其可滚动吗?任何帮助或建议将不胜感激!

4

4 回答 4

32

这个解决方案取自这篇文章

为了使视图可滚动,它必须嵌套在 ScrollView 容器内:

<ScrollView>
    <LinearLayout android:orientation="vertical"
            android:scrollbars="vertical"
            android:scrollbarAlwaysDrawVerticalTrack="true">
        <TextView />
        <Button />
    </LinearLayout>
</ScrollView>

请注意,一个 ScrollView 容器只能有一个子布局视图。例如,无法在没有 LinearLayout 的情况下将 TextView 和 Button 放置在 ScrollView 中。

于 2013-06-06T06:27:39.453 回答
13

在这种情况下,您可以创建自己的 layout.xml 文件,其中包含滚动视图下的文本视图。并在此文本视图中设置 TextMessage,使用警报对话框填充此布局。

你的xml文件.xml

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

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

    <TextView
        android:id="@+id/textmsg"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="@string/hello" />

    </LinearLayout>
</ScrollView>

在活动课上

LayoutInflater inflater= LayoutInflater.from(this);
View view=inflater.inflate(R.layout.yourxmlfile, null);

TextView textview=(TextView)view.findViewById(R.id.textmsg);
textview.setText("Your really long message.");
AlertDialog.Builder alertDialog = new AlertDialog.Builder(this);  
alertDialog.setTitle("Title");  
//alertDialog.setMessage("Here is a really long message.");
alertDialog.setView(view);
alertDialog.setButton("OK", null);  
AlertDialog alert = alertDialog.create();
alert.show();
于 2013-06-06T06:47:41.473 回答
2

可滚动的警报对话框

您可以只使用默认方法:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title").setMessage(message);

AlertDialog alert = builder.create();
alert.show();

你可以注意到一个消息 TextView 是在 ScrollView 容器中内置的alert_dialog.xml。这是一个使用的布局。

的位置alert_dialog.xml

<some_path>/Android/sdk/platforms/android-<version>/data/res/layout/alert_dialog.xml
//e.g.
/Users/alex/Library/Android/sdk/platforms/android-30/data/res/layout/alert_dialog.xml
于 2017-11-09T15:44:21.617 回答
0

或者您可以以编程方式进行。如果您想要一个非标准的对话框,这将特别有用。(例如,在下面的示例中,我想在我的消息之外添加一个 EditText 字段。)您也可以像往常一样添加按钮。

final ScrollView myScroll = new ScrollView(this);
        final TextView myText = new TextView(this);
        myText.setText("Put really long text here.");
        myText.setPadding(30, 5, 30, 0); //or whatever you want
        final LinearLayout myView = new LinearLayout(this);
        myView.setOrientation(LinearLayout.VERTICAL);
        final EditText input = new EditText(this);
        input.setInputType(InputType.TYPE_CLASS_TEXT );
        myView.addView(myText);
        myView.addView(input);
        myScroll.addView(myView);
        builder.setView(myScroll);
于 2021-05-06T01:58:09.287 回答