我可以创建一个AlertDialog。问题是我的应用程序都是水平查看的,但AlertDialog是垂直显示的。 其他GUI部分使用Bitmap绘制,这就是为什么我能够在没有在main.xml文件中指定它的情况下使它们成为horizontall。 我确实为linearlayout添加了水平方向,但它没有帮助。 main.xml文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test.app"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.FLASHLIGHT"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TheActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
创建对话框如下所示:
{
AboutClick = true;
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
builder.setTitle("Pick a color");
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE) ;
View layout = inflater.inflate(R.layout.main, null);
builder.setView(layout);
AboutDialog = builder.create();
AboutDialog.show();
}
知道对话框垂直而不是水平显示的原因吗?
答案 0 :(得分:2)
如您所愿。要始终保持水平,您需要在manifest.xml中的标记中添加android:screenOrientation="landscape"
作为属性,如下所示:
<activity android:name=".TheActivity"
android:screenOrientation="landscape"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>