设备上的屏幕,例如iPhone或其他智能手机。有关gnu-screen(管理多个窗口的终端应用程序)的问题,请使用gnu-screen标记。
我目前正在开发一个Android应用程序,这给我带来了一些麻烦。我的应用程序严重依赖于正确适合其所显示屏幕的图像。不幸的是,...
我的应用程序上的图像尺寸和分辨率有问题,我需要上传图像,然后我想将其调整到所有屏幕,这是横幅和徽标的最佳图像尺寸和宽度/高度,我... .
我想使用我的笔记本电脑作为另一台笔记本电脑的第二个屏幕。为此,我尝试在投影到这台电脑下添加无线显示作为可选功能。据说是无线显示
我有一个可以唤醒屏幕的应用程序,它在Android 6至11的早期版本上完美运行。升级到Android 14后,它不再起作用。我已经修改了我的代码以纳入建议...
我想做一个两屏应用程序。我想使用按钮从第一个位置通知屏幕切换到主要活动 但应用程序打不开。 我想做一个双屏应用程序。我想使用按钮从第一个位置通知屏幕切换到主要活动 但应用程序打不开。 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.hadi.ezanvakti"> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <uses-feature android:name="android.hardware.sensor.accelerometer" /> <uses-feature android:name="android.hardware.sensor.compass" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:supportsRtl="true"> <activity android:name=".SplashActivity" android:label="@string/app_name" android:exported="true" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MainActivity" /> </application> </manifest> (第一屏不是闪屏,只是名字是这样的) SplashActivity.java在这里: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash); tikla1 =(Button) findViewById(R.id.tikla); kapat1 =(Button) findViewById(R.id.kapat); text1 =(TextView) findViewById(R.id.baslik); text2 =(TextView) findViewById(R.id.text1); text3 =(TextView) findViewById(R.id.text2); image1 =(ImageView) findViewById(R.id.konumresmi); checkLocationPermission(); tikla1.setOnClickListener(new View.OnClickListener() { public void onClick(View d) { Intent myIntent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); startActivity(myIntent); Intent intent = new Intent(SplashActivity.this, MainActivity.class); startActivity(intent); } }); kapat1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { Intent intent = new Intent(SplashActivity.this, MainActivity.class); startActivity(intent); } }); } activity_splash.xml 文件在这里: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/konumi"> <TextView android:id="@+id/baslik" android:layout_width="match_parent" android:layout_height="match_parent" android:text="Konumunuzu kullanın" android:textSize="60sp" android:layout_gravity="center_horizontal" android:textStyle="bold" android:layout_marginTop="50dp"/> <TextView android:id="@+id/text1" android:layout_width="match_parent" android:layout_height="match_parent" android:text="Değişen konumunuza göre otomatik olarak güncellenen namaz vakitleri için Ezan Vakti'nin konumunuzu her zaman kullanmasına izin verin." android:textSize="20sp" android:layout_gravity="center_horizontal" android:layout_marginTop="50dp"/> <TextView android:id="@+id/text2" android:layout_width="match_parent" android:layout_height="match_parent" android:text="Ezan Vakti namaz vakitlerini ve kıble yönünü göstermek için arka plandaki konumu kullanacak." android:textSize="20sp" android:layout_gravity="center_horizontal" android:layout_marginTop="70dp"/> <ImageView android:id="@+id/konumresmi" android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/konumi" android:layout_gravity="center" android:adjustViewBounds="true" android:scaleType="centerCrop" android:layout_centerInParent="true"/> <Button android:id="@+id/tikla" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginLeft="200dp" android:layout_marginBottom="45dp" android:text="Konumu aç" android:background="#0009ff" android:textColor="#ffffff" android:textSize="15sp" android:textStyle="bold"/> <Button android:id="@+id/kapat" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginLeft="50dp" android:layout_marginBottom="45dp" android:text="Hayir,tesekkurler" android:background="#ffffff" android:textColor="#0009ff" android:textSize="15sp" android:textStyle="bold"/> </RelativeLayout> 我尝试使用第一个屏幕上的按钮切换到第二个屏幕,但应用程序无法打开。 如果您能帮助我,我会很高兴。 您的问题在 activity_splash.xml。您的 layout_width 和 layout_height 的 TextView 和 ImageView 属性设置为 match_parent。这意味着这些组件与您的 Button 重叠并使它们无法单击。 调整布局并避免将 match_parent 用于 TextView 和 ImageView。您应该将其 layout_width 和 layout_height 更改为 wrap_content 并结合调整其他属性以获得预期的布局。 例如: <TextView android:id="@+id/baslik" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Konumunuzu kullanın" android:textSize="60sp" android:layout_gravity="center_horizontal" android:textStyle="bold" android:layout_marginTop="50dp"/> <TextView android:id="@+id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Değişen konumunuza göre otomatik olarak güncellenen namaz vakitleri için Ezan Vakti'nin konumunuzu her zaman kullanmasına izin verin." android:textSize="20sp" android:layout_gravity="center_horizontal" android:layout_marginTop="50dp"/> <TextView android:id="@+id/text2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Ezan Vakti namaz vakitlerini ve kıble yönünü göstermek için arka plandaki konumu kullanacak." android:textSize="20sp" android:layout_gravity="center_horizontal" android:layout_marginTop="70dp"/> <ImageView android:id="@+id/konumresmi" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/konumi" android:layout_gravity="center" android:adjustViewBounds="true" android:scaleType="centerCrop" android:layout_centerInParent="true"/>
我手里有一个封闭系统车载充电器,并且诸如多少电压和多少安培电池状态之类的信息会显示到该设备的液晶屏上,现在这些数据到达屏幕...
如果我们在终端会话(屏幕命令)的输出中找到某个单词,是否可以停止它?
如果某个单词出现在终端会话中,我想结束它。假设我有三个执行以下操作的脚本: ./script1.sh: #!/bin/bash 一本水中鱼吃人类墨西哥美国l...
我正在尝试替换文件 /etc/screenrc 中的文本。我尝试了很多方法,但由于转义字符串而出现错误。 原始字符串是: termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?...
我正在尝试替换文件 /etc/screenrc 中的文本。我尝试了很多方法,但由于转义字符串而出现错误。 原字符串为: termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?...
对于作为全栈或前端 Web 开发人员工作并经常使用 css 的人,我想问你如何处理屏幕大小并使你的网站在所有平台上看起来都相同,这是......
Python Kivy:如何将特定对象从屏幕 A 传输到屏幕 B?
我对Python Kivy 制作应用程序非常陌生。 现在我正在制作一个可以通过应用程序访问数据库和操作数据的应用程序。 为了让我能够自由地做到这一点,我想我必须
我正在尝试创建一种通用方法来呈现 UIViewController。 我按照以下步骤操作: func getScreen(screenID: String) -> T where T: UIViewController { 切换屏幕ID { ...
Kivy/md - 如何使用 ScreenManager 更改屏幕,我可以这样做吗...?
我有这个简单的代码来更改屏幕。我只是想知道在回调()中更改的正确变量是调用屏幕更改。 我见过其他方法,但想做......
我希望在我的 Android 汽车应用程序中及时显示信息。 我使用 GridTemplate,我想在其中更新项目的文本。为了进行测试,我有一个简单的计数器,带有计时器......
在此输入图像描述 正如您在图片中看到的,我已经为宽度为 768px 的屏幕编写了查询,但我为宽度为 375px 的设备编写的查询正在应用。 输入...
我想实现一个使用Qt调整所有显示器亮度的程序。我是一个初学者,找了很久的资料。谁能给我一些想法吗?谢谢! ...
setGeometry 在 OS X 上使用 Qt6 设置顶部坐标失败
我正在创建一个名为 showLeftAligned 的方法,以强制 QDialog 的几何图形在屏幕上左对齐,并由周围的间隙像素间隔分开。 无效 QXDialog::showLeftAligned(int 间隙) {
.kv 文件中的 K5 和 ** Geo5** 屏幕之间没有过渡 我已经阅读了论坛和文档中的文章,但我不明白我做错了什么,我是 Kivy 的新手。我有一个
我想问如何在iOS 17中访问和修改帧缓冲区。 我想修改整个屏幕以在屏幕顶部创建黑条,以减小总屏幕尺寸并调整
你好,所以我尝试使用Onnx制作一个AI检测框,我想制作它,所以如果我在vs2022中并制作我想要制作的应用程序,所以如果我选中一个复选框,它将激活t.. .