任何想法爲什麼這不會創建看起來像彈出窗口的活動,而不是完全填滿屏幕的活動?Android - 不填充父屏幕的活動
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="300dip"
android:layout_height="120dip"
android:layout_marginTop="100dip">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="120dip"
android:layout_width="300dip">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
</RelativeLayout>
</LinearLayout>
我認爲我只需要設置佈局的高度和寬度佈局比「FILL_PARENT」以外的東西,但它仍然顯示爲黑屏完全充滿屏幕。
最終,我只是想創建一個彈出窗口,但我不想使用AlertDialog。這可能嗎?
謝謝。這正是我需要的。 –
現在就是 - style =「@ style/AlertDialog.AppCompat」 now。 – SanVed