と活動しています
android:theme="@android:style/Theme.Dialog"
フロートウィンドウとして表示します。また、私はラインを持っています
getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
また、コンテンツを正しく表示するには、このウィンドウの幅/高さが必要です。
4 つのオプションをテストしましたが、答えが得られませんでした。
//1
int width = getWindowManager().getDefaultDisplay().getWidth();
//2
int width = getWindow().getDecorView().getWidth();
//3
getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
//4
int width = getWindow().getAttributes().width;
ありがとう!