5

我已经尝试了所有我能找到的东西(在stackoverflow和网络上),但我无法将我的对话框设置为全屏。它有一个带有文本视图的滚动视图,当文本视图中没有太多文本时,滚动视图不是全屏的。即使没有太多可见的文本,如何强制它全屏显示?

我创建这样的对话框:

    final   TextView    box;
    final   Dialog      info    = new Dialog(cx);
    final   ScrollView  scroll;

    info.setContentView(R.layout.dialoginfo);
    info.setTitle("Info");
    info.setCancelable(true);
    info.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN);

    scroll = ((ScrollView) info.findViewById(R.id.scrollviewinfo));
    scroll.setPersistentDrawingCache(ScrollView.PERSISTENT_NO_CACHE);
    scroll.setScrollbarFadingEnabled(false);
    box = (TextView) info.findViewById(R.id.infotext);
    box.setText(text);
    info.show();

这是xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:id="@+id/infolayout"
>

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/ImageView01"
        android:layout_weight="1.0"
        android:id="@+id/scrollviewinfo">

        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:id="@+id/infolayout2">

            <TextView   android:layout_margin="5dip" android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:id="@+id/infotext"
                android:textSize="8sp" 
                android:text=""/>

        </LinearLayout>

    </ScrollView>


</LinearLayout>
4

3 回答 3

6

看起来您的 ScrollView 的高度设置为wrap_content,我首先尝试将其替换为fill_parent.

以下是一些可能对您有所帮助的其他资源:

如何让 Dialog 样式的活动窗口填满屏幕?

我从来没有使用过这种setFlags()方法,所以这可能会给你同样的结果。基本上尝试更换

info.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN);

info.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);

或者,如果您想要更精确地控制高度,您可以创建布局参数的实例,如这里的第一个答案所述:

如何使警报对话框填充 90% 的屏幕尺寸?

如果您想将其修改为略小于全屏,您也可以使用此代码获取屏幕尺寸。

Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();

还有很多其他方法可以获取当前屏幕尺寸,这只是一个示例。祝你好运!

于 2012-05-01T14:17:39.763 回答
0

您是否尝试过将 ScrollView 的 layout_height 设置为“match_parent”(您也可以将 LinearLayout 设置为“match_parent”,尽管我认为没有必要)?我猜当没有太多文本时它会缩小,因为它设置为“wrap_content”。尝试这个:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/ImageView01"
    android:layout_weight="1.0"
    android:id="@+id/scrollviewinfo">          

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"             
        android:layout_height="match_parent"
        android:orientation="vertical"             
        android:id="@+id/infolayout2"> 
    ...
    </LinearLayout>
</ScrollView>
于 2012-05-01T14:05:35.093 回答
0

尝试将您的对话框自定义布局包装到RelativeLayout而不是线性布局。这对我有用。

于 2016-09-23T07:47:00.547 回答