2013-07-14 195 views
3

enter image description here使用自定義主題

刪除警報對話框邊界在我的應用我使用與圓角矩形的警告對話框theme.But它有alertdialog矩形和我theme.My問題是如何取代像dialog.I警告對話框邊界只想用自己的主題來顯示這個設置項目。

我想輸出這種方式,取代上述主題:

enter image description here

主要活動:

AlertDialog.Builder alertSeverity = new AlertDialog.Builder(
      getActivity(), R.style.Theme_CustomDialog); 
    alertSeverity.setTitle("Severity Status"); 
CharSequence[] severityStatus = { "Low-Severity", 
      "Middle-Severity", "High-Severity" }; 
    alertSeverity.setItems(severityStatus, 
      new DialogInterface.OnClickListener() {   

       @Override 
       public void onClick(DialogInterface dialog, int which) { 
       } 
       }); 

我的主題:

<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog"> 
    <item name="android:windowBackground">@drawable/shapedialogtheme</item> 
<item name="android:windowFrame">@null</item> 

</style> 

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 

<solid android:color="#565656" /> 

<stroke 
    android:width="5dp" 
    android:color="#ffff8080" /> 

<corners android:radius="30dp" /> 

<padding 
    android:bottom="10dp" 
    android:left="10dp" 
    android:right="10dp" 
    android:top="10dp" /> 
<size 
    android:width="150dp" 
    android:height="150dp"/> 

</shape> 

enter image description here

+0

ü可以很容易地使通過定製而不是使用主題。 – TheFlash

+0

如何使海關 – Satheesh

+0

等待我要去郵編。 – TheFlash

回答

2

嘗試下一個解決方案:

從對話框延伸,並設置使用的setContentView使用完全視圖。

alertDialog用於某些功能。這並不是說它可以做任何你想做的事。

也許不是擴展你可以把對話框,然後使用setContentView。

7

使用對話框而不是AlertDialog。

創建您想要在對話框中顯示的自定義佈局,並在對話框中設置setContent。 在對話框中應用這個主題android.R.style.Theme_Translucent_NoTitleBar它會隱藏邊框。

以下是示例代碼。

Dialog dialog = new Dialog(activity.this, android.R.style.Theme_Translucent_NoTitleBar); 

// your layout file 
dialog.setContentView(R.layout.dialog); 

// for hide title 
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 

//for set title 
dialog.setTitle("Custom Dialog"); 


dialog.show(); 

更新時間:

在AlertDialog只是嘗試這樣做。

AlertDialog.Builder alertSeverity = new AlertDialog.Builder(
      getActivity(), android.R.style.Theme_Translucent_NoTitleBar); 
+0

嘿我想動態設置項目,所以我絕對使用alertdialog而不是對話框.. – Satheesh

+0

@Satheesh檢查我更新的答案,如果它不會工作,那麼你必須使用對話框..你也可以採取listview佈局.. –

+0

http: //stackoverflow.com/a/5910772/624069 –

2

使用對話,而不是AlertDialog

Dialog callAlert = new Dialog(LoginActivity.this,R.style.CutomDialog); 
callAlert.setContentView(R.layout.call); 

Style.xml

<style name="CutomDialog" parent="android:style/Theme.Dialog"> 
    <item name="android:windowBackground">@android:color/transparent</item> 
    <item name="android:windowNoTitle">true</item> 
    <item name="android:windowAnimationStyle">@style/Animations.DialogAnimation</item> 
</style> 

call.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:orientation="vertical" 
android:layout_margin="20dp" 
android:background="@drawable/call_bg"></RelativeLayout> 

call_bg.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
<stroke android:width="3dp" android:color="#A20B3F" /> 

<corners android:bottomRightRadius="4dp" android:bottomLeftRadius="4dp" 
android:topLeftRadius="4dp" android:topRightRadius="4dp"/> 

主要的事情是,你必須做出佈局backgrpund否則透明您將無法爲你想輸出。

2

你需要設計用於此目的的自定義對話框:

**dialog.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" > 

<TextView 
    android:id="@+id/txt_view_SaveAs" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/save_as" 
    android:layout_margin="10dp" 
    android:textSize="25dp" /> 

<EditText 
    android:id="@+id/edit_txt_SaveAs" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:minWidth="300dp" 
    android:maxLines="1" 
    android:textSize="20dp" 
    android:maxLength="50" 
    android:layout_margin="10dp" 
    android:text="@string/save_as" /> 

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" 
    android:layout_margin="10dp" 
    android:weightSum="1.0" > 

    <Button 
     android:id="@+id/btn_SaveAs" 
     android:layout_width="0dp" 
     android:layout_height="50dp" 
     android:layout_weight="0.5" 
     android:minWidth="100dp" 
     android:textSize="20dp" 
     android:text="@string/save" 
     android:layout_margin="3dp" /> 

    <Button 
     android:id="@+id/btn_Cancel" 
     android:layout_width="0dp" 
     android:layout_height="50dp" 
     android:layout_weight="0.5" 
     android:minWidth="100dp" 
     android:textSize="20dp" 
     android:text="@string/cancel" 
     android:layout_margin="3dp" /> 

</LinearLayout> 

然後,您可以讓不同類的特定對話是這樣的:

public class SaveDialog extends Dialog implements android.view.View.OnClickListener { 

private Context context; 

private TextView txt_view_SaveAs; 
private EditText edit_txt_SaveAs; 
private Button btn_SaveAs; 
private Button btn_Cancel; 

public SaveDialog(Context context) { 
    super(context); 
    this.context = context; 
    // TODO Auto-generated constructor stub 
} 

public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.dialog); 

    setCancelable(true); // Setting the Dialog to be Cancellable on Back Key Press 

    txt_view_SaveAs = (TextView) findViewById(R.id.txt_view_SaveAs); 
    edit_txt_SaveAs = (EditText) findViewById(R.id.edit_txt_SaveAs); 
    btn_SaveAs = (Button) findViewById(R.id.btn_SaveAs); 
    btn_SaveAs.setOnClickListener(this); 
    btn_Cancel = (Button) findViewById(R.id.btn_Cancel); 
    btn_Cancel.setOnClickListener(this); 
} 

@Override 
public void onClick(View v) { 
     // Write code for all the buttons on click methods 
} 
} 

然後就可以調用您的主類中的自定義對話框通過使用以下代碼:

SaveDialog save_dialog = new SaveDialog(saving_activity); 
save_dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
save_dialog.show(); 
2

您無法從警報對話框中刪除邊框。

使用本

public class ActivityIndicator extends Dialog implements android.view.View.OnClickListener{ 
protected static final String TAG = InfoIndicator.class.getName(); 
ImageView close; 
WebView info; 

     public ActivityIndicator (Context context,String information) 
     { 
      super(context, android.R.style.Theme_Translucent_NoTitleBar); 
      requestWindowFeature(Window.FEATURE_NO_TITLE); 
      setContentView(R.layout.info); 
      setCancelable(true); 
      } 
} 

,並嘗試這下面的播放功能,隱藏和清晰的對話

private static ActivityIndicator activityIndicator; 

public static void hideActivityViewer() { 
    if (activityIndicator != null) { 
     activityIndicator.dismiss(); 
    } 
    activityIndicator = null; 
} 

public static void showActivityViewer(Context context) { 
    if (activityIndicator == null) 
    { 
     activityIndicator = new ActivityIndicator(context); 
    } 
    activityIndicator.show(); 

} 
public static void clearDialogs() 
{ 
    activityIndicator = null; 
} 
+0

Hai我想只顯示我的custome主題而沒有alertdialog邊框 – Satheesh

+0

是否有任何可能的刪除警報對話框邊框,並設置我自己的主題... – Satheesh

+0

不,你不能刪除警告對話框邊框 –

1

你可以自己使用popwindow更多風格