我已经尝试了所有我能找到的东西(在stackoverflow和网上),但我不知道我的对话框无法设置为全屏。它有一个带有textview的scrollview,当textview中的文本不多时,scrollview不是全屏。即使没有多少文字可见,我怎么能强制它全屏?
我创建了这样的对话框:
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>
答案 0 :(得分:6)
看起来您的ScrollView的高度设置为wrap_content
,我首先尝试将其替换为fill_parent
。
以下是一些可能对您有所帮助的其他资源:
How can I get a Dialog style activity window to fill the screen?
我从未使用setFlags()
方法,所以这可能会给你相同的结果。基本上尝试更换
info.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN);
带
info.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
或者,如果您想要更精确地控制高度,可以创建布局参数的实例,这里的第一个答案描述:
How to make an alert dialog fill 90% of screen size?
您还可以使用此代码获取屏幕大小,如果您想将其修改为略小于全屏幕。
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
还有很多其他方法可以获得当前的屏幕尺寸,这只是一个例子。祝你好运!
答案 1 :(得分: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>
答案 2 :(得分:0)
尝试将对话框自定义布局包装到 RelativeLayout 而不是线性布局。这对我有用。