Questions tagged «android»

Android是Google的移动操作系统,用于对数字设备(智能手机,平板电脑,汽车,电视,Wear,Glass和IoT)进行编程或开发。对于与Android相关的主题,请使用特定于Android的标签,例如android-intent,android-activity,android-adapter等。对于与开发或编程无关但与Android框架相关的问题,请使用以下链接:https:// android.stackexchange.com。

7
Android用省略号替换“…”
由于AVD工具16我收到以下警告: Replace "..." with ellipsis character (..., …) ? 在我的strings.xml中 在这条线 <string name="searching">Searching...</string> 我该如何更换...?只是字面上的意思…吗? 有人可以解释这种编码吗?
306 android  xml  encoding  adt 


5
Android-更新SDK版本23后,至少添加一个带有ACTION-VIEW Intent过滤器的Activity
我在AndroidManifest.xml中得到以下工具提示: 该应用无法通过Google搜索建立索引;考虑添加至少一个带有ACTION-VIEW意向填充器的Activity。有关更多详细信息,请参见问题说明。 添加深层链接,使您的应用程序进入Google索引,从Google搜索获取安装量和访问量。 谁能解释为什么会这样?

16
AppCompat的全屏主题
我想知道如何将全屏主题(无标题栏+无动作栏)应用于活动。我正在使用支持包v7中的AppCompat库。 我尝试将其应用android:theme="@android:style/Theme.NoTitleBar.Fullscreen"到我的特定活动中,但是崩溃了。我认为这是因为我的应用程序主题是这样的。 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 我也尝试过 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 仅隐藏标题栏,不隐藏操作栏。我目前的解决方法是使用隐藏操作栏 getSupportActionBar().hide();



16
Android 1.6:“ android.view.WindowManager $ BadTokenException:无法添加窗口-令牌null不适用于应用程序”
我试图打开一个对话框窗口,但是每次我尝试打开它时,都会引发此异常: Uncaught handler: thread main exiting due to uncaught exception android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application at android.view.ViewRoot.setView(ViewRoot.java:460) at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177) at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91) at android.app.Dialog.show(Dialog.java:238) at android.app.Activity.showDialog(Activity.java:2413) 我通过showDialog使用显示器的ID 进行调用来创建它。该onCreateDialog处理程序的日志记录很好,我可以毫无问题地逐步解决它,但是我附上了它,因为似乎我缺少了一些东西: @Override public Dialog onCreateDialog(int id) { Dialog dialog; Context appContext = this.getApplicationContext(); switch(id) { case …

26
如何使警报对话框填充屏幕大小的90%?
我可以创建并显示自定义警报对话框,但即使如此 android:layout_width/height="fill_parent"在对话框xml中,它也只与内容一样大。 我想要的是一个对话框,它可以填充整个屏幕,但可能需要20像素的填充。然后,作为对话框一部分的图像将使用fill_parent自动拉伸为整个对话框大小。
303 android  dialog 

21
错误:(1,0)找不到ID为'com.android.application'的插件
这是我第一次尝试Android Studio。我安装了0.8.0并更新为0.8.2。创建项目后,我立即收到错误消息: 错误:(1,0)找不到ID为'com.android.application'的插件 C:\ Users \ Bob \ AndroidStudioProjects \ HelloAgain6 \ app \ build.gradle apply plugin: 'com.android.application' android { compileSdkVersion 20 buildToolsVersion "20.0.0" defaultConfig { applicationId "com.example.bob.helloagain6" minSdkVersion 15 targetSdkVersion 20 versionCode 1 versionName "1.0" } buildTypes { release { runProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies …


8
nativeGetEnabledTags中的意外值:0
我安装了最新版本的SDK(r21)和ADT 21.0.0。我尝试了简单的代码,并且效果很好,但是现在我在LogCat中收到一条警告,该警告未出现在以前的版本中: nativeGetEnabledTags中的意外值:0 我用谷歌搜索,然后发现问题39723:模拟器垃圾邮件LogCat带有“ nativeGetEnabledTags:0的意外值”消息。 这是什么意思?



9
add(),replace()和addToBackStack()之间的区别
调用这些方法之间的主要区别是: fragmentTransaction.addToBackStack(name); fragmentTransaction.replace(containerViewId, fragment, tag); fragmentTransaction.add(containerViewId, fragment, tag); 替换一个已经存在的片段,并向活动状态添加一个片段,并向后堆栈添加活动,这意味着什么? 其次,使用findFragmentByTag(),此搜索是否搜索add()/ replace()方法或addToBackStack()方法添加的标记?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.