Questions tagged «android-4.0-ice-cream-sandwich»

27
当我尝试在设备上安装已编译的.apk时,INSTALL_FAILED_UPDATE_INCOMPATIBLE
我已经从CyanogenMod 9编译了Trebuchet启动器,并尝试使用adb安装它: $ adb install out/target/product/generic/system/app/Trebuchet.apk 3986 KB/s (7870141 bytes in 1.928s) pkg: /data/local/tmp/Trebuchet.apk Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE] 我尝试使用CM9的Nexus S和带有股票JB的Galaxy Nexus。为什么我收到此错误? 编辑:就我而言,我尝试使用软件包管理器重新安装系统软件包。不支持该功能,因此出现此错误。错误的来源可能因您而异。

5
android-support-v7-appcompat和android-support-v4之间的区别
我想知道android-support-v4.jar 和android-support-v7-appcompat.jar之间的区别。如果要在应用程序中添加appcompat操作栏,则需要添加android-support-v7-appcompat.jar和android-support-v4.jar或仅添加android-support-v7-appcompat.jar。 另外,android-support-v13.jar是否具有appcompat?


18
SearchView的OnCloseListener不起作用
我正在尝试SearchView在Android 3.0+ ActionBar中添加对的支持,但无法OnCloseListener正常工作。 这是我的代码: @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu, menu); searchView = (SearchView) menu.findItem(R.id.search_textbox).getActionView(); searchView.setOnQueryTextListener(new OnQueryTextListener() { @Override public boolean onQueryTextChange(String newText) { searchLibrary(newText); return false; } @Override public boolean onQueryTextSubmit(String query) { return false; } }); searchView.setOnCloseListener(new OnCloseListener() { @Override public boolean onClose() { System.out.println("Testing. 1, 2, …

5
片段onCreateView和onActivityCreated调用了两次
我正在使用Android 4.0 ICS和片段开发应用程序。 考虑一下ICS 4.0.3(API级别15)API的演示示例应用程序中的以下修改示例: public class FragmentTabs extends Activity { private static final String TAG = FragmentTabs.class.getSimpleName(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final ActionBar bar = getActionBar(); bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); bar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE); bar.addTab(bar.newTab() .setText("Simple") .setTabListener(new TabListener<SimpleFragment>( this, "mysimple", SimpleFragment.class))); if (savedInstanceState != null) { bar.setSelectedNavigationItem(savedInstanceState.getInt("tab", 0)); Log.d(TAG, "FragmentTabs.onCreate tab: …


2
Android 4.0上的Holo主题的默认颜色值是什么?
是否有人可以访问Android 4.0中Holo使用的默认颜色(浅色和深色)列表? 我正在寻找列表背景,主要和次要文本,ActionBar等内容。 Google在“主题和颜色样式”准则中提供了一些示例,但它们并未真正涉及所使用的实际颜色值。我可以从图像中获取它们,但我宁愿使用一些更准确的东西。

15
禁用EditText上的键盘
我在做计算器。所以我Buttons用数字和函数制作了自己的数字。有要计算的表达,是在EditText,因为我希望用户也可以在表达式中添加数字或功能,所以与EditText我有cursor。但是我想禁用Keyboard用户单击时的EditText。我发现此示例适合Android 2.3,但同时ICS禁用Keyboard和光标。 public class NoImeEditText extends EditText { public NoImeEditText(Context context, AttributeSet attrs) { super(context, attrs); } @Override public boolean onCheckIsTextEditor() { return false; } } 然后我NoImeEditText在XML文件中使用它 <com.my.package.NoImeEditText android:id="@+id/etMy" .... /> 如何使此EditText与ICS兼容???谢谢。
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.