0
我在我的項目中使用了abs。我有一個在我的清單文件中定義的活動,我給它Theme.herlock.Dialog風格。這使我的對話框顯示爲一個對話框。但是出現的對話框填充完整的layout_width?我究竟做錯了什麼。這裏是我的代碼Android Theme.Sherlock.Dialog對話框填充完整寬度
<activity
android:name=".activity.ConfirmationDialog"
android:configChanges="keyboardHidden|orientation"
android:label="Confirm"
android:launchMode="standard"
android:theme="@style/ThemeWithCorners" />
<style name="ThemeWithCorners" parent="Theme.Sherlock.Dialog">
<item name="android:windowBackground">@drawable/dialog_round_corners</item>
<item name="android:windowCloseOnTouchOutside">false</item>
</style>
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:id="@+id/headerText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="2dp"
android:textSize="15sp"
android:textStyle="bold" />
<TextView
android:id="@+id/bodyText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:textSize="15sp"
android:textColor="@color/black"
android:textStyle="normal" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/posotiveButton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="1"
android:background="@drawable/custom_button_grey"
android:text="@string/postiveButtonText" />
<Button
android:id="@+id/negativeButton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="1"
android:background="@drawable/custom_button_grey"
android:text="@string/negativeButtonText" />
</LinearLayout>
不能讓你的問題... – Bhavin
我想他/她不希望'SherlockFragmentDialog'填滿整個屏幕。或者我錯了? 對於你的答案,如果需要的話,對話框只填滿整個屏幕。我在我的應用程序中也使用了Sherlock對話框。 – Leandros
沒錯,就是這樣。我不希望它填滿整個屏幕。但我無法使wrap_content工作? – AndroidDev