更改应用程序中的方向时出现问题

发布于 2024-10-21 05:59:04 字数 739 浏览 4 评论 0原文

我已经在 SO 中发布了我的问题并得到了答案,但我也有一个问题,

我以前的问题是 “我在我的应用程序中创建了一个问答游戏。该游戏将以纵向模式玩。游戏结束后,将计算分数,并在我单击“确定”时显示在分数页面中,会出现一个弹出窗口并询问对于名称,我

现在在 facebook 和 twitter 上放置了一个共享结果的选项,当我输入名称并单击“确定”时,会出现一个包含分数名称和共享按钮的页面,如果我单击“共享”,则会移至 facebook 或其他地方,但如果我改用横向模式,我的应用程序就会崩溃。”

我找到了一个解决方案,可以在清单文件中添加一行,

 <activity android:name=".main" 
        android:configChanges="orientation" />

并在类文件中添加以下代码

@Override
公共无效onConfigurationChanged(配置newConfig) { super.onConfigurationChanged(newConfig); 或

这个答案可以帮助我进入下一个操作,而不会导致我的应用程序崩溃,但问题是当我从横向更改为纵向时,背景图像和文本也更改为纵向,并且屏幕的一半似乎是空白的,并且文本 没有完全显现出来。

从横向更改为方向时也是如此。我希望图像和文本适合正确的方向。

在输入这些清单和编码行之前没有发生这个问题,

请给我一个解决方案。

i have already posted my issue in SO and got an answer but i have a problem in that too

my former question is
"i have created a quiz game in my app. The game is to be played in portrait mode. After the game gets over the score is been calculated and its been showed in the score page when i click ok a pop up window appears and asks for the name. I have placed an option to share the result in facebook and twitter.

now when i enter the name and click ok, a page with score name and share button appears, if i click share it moves into facebook or the other, but if i change over to landscape mobe my app gets crashed."

i got a solution to add a line in manifest file

 <activity android:name=".main" 
        android:configChanges="orientation" />

along with the following code in the class file

@Override
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
}

This answer helps me to move to next operation without crashing my app but the problem is when i change from landscape to portrait, the background image and text also gets changed to portrait and half the screen the seems to be a blank one and text or not appearing fully.

this is the same when changed from landscape to orientation. i want the image and text to be fitted to proper orientation.

this problem has not occured before entering those manifest and coding lines

pls give me a solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-10-28 05:59:04

您可以尝试明确定义布局。

例如,有两个布局文件,一个用于横向,另一个用于纵向。 Android 足够智能,可以使用最佳的可用布局 ->阅读此处

要优雅地处理屏幕方向,您还需要一些东西要做->阅读此处

You could try an explicit definition of your layouts.

For example have two layout files, one for landscape and another for portrait. Android is intelligent enough to use the best available layout -> Read HERE

To handle screen orientation gracefully there is something more you need to do -> Read HERE

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文