好的,我问了另一个问题here,试图让我的活动看起来像对话框。我想也许不是问一个具体的方法,我应该问一下我想做什么,也许还有不同的方法可以解决这个问题......
这就是我所拥有的。我的应用程序允许将快捷方式放在主屏幕上。用于创建快捷方式的代码和逻辑都可以完美地运行,然后快捷方式启动适当的活动,显示它应该是什么......再次,所有工作都完美无瑕。
我想知道的是,有没有办法让主屏幕快捷方式启动我的活动作为对话(而不是简单地尝试让我的活动看起来像对话框)?
答案 0 :(得分:12)
将此添加到您希望看起来像对话框的活动的清单中,声明:
<activity android:theme="@android:style/Theme.Dialog">
了解更多信息和主题: http://developer.android.com/guide/topics/ui/themes.html
此外,通过这个程序,您可以使用以下代码:
public class ShowDialogActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
//
//Log.d("DEBUG", "showing dialog!");
Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.select_dialog_singlechoice);
dialog.setTitle("Your Widget Name");
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(true);
TextView text = (TextView) dialog.findViewById(R.id.text1);
text.setText("Message");
dialog.show();
//
dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
public void onCancel(DialogInterface arg0) {
finish();
}
});
}
}
您可以选择对话框所需的任何布局,并根据需要进行设计。
此外,您需要在清单中为以下内容设置此活动声明:
<activity android:name=".ShowDialogActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
希望这就是你要找的,Gal。