我试图在我的Android应用程序中实现Google Maps v2,但不幸的是,我没有看到地图,而是收到了以下消息: 是否有可能在Android模拟器(平台4.2)上运行这些地图?
我是一个Web开发人员,我想将我的Web产品移到iPhone上。 其中一个产品就像谷歌地图:在手机屏幕上显示地图,您可以拖动或调整地图的大小,并查看我们添加到地图的一些信息。 我知道有一些技术可以让你使用HTML,CSS和Javascript开发原生的iPhone应用程序。 我已经确定了几个: 安斯卡移动 PhoneGap的 Appcelerator的 还有其他类似的产品吗? 他们之间有什么区别? 我应该select哪一个?
我使用下面的代码从XML中获得一个视图: Button view = (Button) LayoutInflater.from(this).inflate(R.layout.section_button, null); 我想设置一个“风格”的button,我怎么能做到这一点在java中,因为我想要使用每个button使用几个样式。
在android中实现服务时, START_STICKY和START_NOT_STICKY什么区别? 任何人都可以指出一些标准的例子..?
我search了大部分的问题,但都没有解决我的问题。 我想通过从EditTextinput文本保存文件到内部存储。 然后,我想让相同的文件以stringforms返回input的文本,并保存到另一个稍后要使用的string中。 代码如下: package com.omm.easybalancerecharge; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.telephony.TelephonyManager; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final EditText num = (EditText) findViewById(R.id.sNum); Button ch = (Button) findViewById(R.id.rButton); […]
我遇到了一个问题,试图运行一个Android应用程序,直到第二个外部库添加到其构buildpath,工作正常。 自从添加了scoreninja jar之后,当我尝试运行应用程序时,我现在得到一个NoClassDefFoundError 。 这里是消息: 02-11 21:45:26.154: ERROR/AndroidRuntime(3654): java.lang.NoClassDefFoundError: com.scoreninja.adapter.ScoreNinjaAdapter 由于所有的构build脚本都是由Android工具(?)生成的,我不知道除了清理和重build或重新启动eclipse(我已经尝试了所有三种)之外,还有什么可以做的。 有谁知道我可以如何修改这个?
有没有办法检查用户是使用平板电脑还是电话? 我的倾斜function有问题,我的新平板电脑(变压器)
我有一个应用程序,在主页上我有button导航通过应用程序。 在那个页面上,我有一个button“退出”,当点击时,应该把用户带到应用程序图标所在手机的主屏幕上。 我怎样才能做到这一点?
我已经研究了很多调整软键盘是活跃的布局,我已经成功实现它,但是当我在清单文件中使用android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 。 为此,我使用了android:windowSoftInputMode="adjustPan|adjustResize|stateHidden"不同的选项,但没有运气。 之后,我以编程方式实现了FullScreen并尝试使用FullScreen各种布局,但都是徒劳的。 我提到这些链接,并在这里看到很多与这个问题有关的post: http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html http://davidwparker.com/2011/08/30/android-how-to-float-a-row-above-keyboard/ 这里是xml代码: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+id/masterContainerView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android" android:background="#ffffff"> <ScrollView android:id="@+id/parentScrollView" android:layout_width="fill_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView android:id="@+id/setup_txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Setup – Step 1 of 3" android:textColor="@color/top_header_txt_color" android:textSize="20dp" android:padding="8dp" android:gravity="center_horizontal" /> <TextView android:id="@+id/txt_header" android:layout_width="fill_parent" android:layout_height="40dp" android:text="AutoReply:" android:textColor="@color/top_header_txt_color" android:textSize="14dp" android:textStyle="bold" android:padding="10dp" android:layout_below="@+id/setup_txt" /> <EditText android:id="@+id/edit_message" android:layout_width="fill_parent" […]
我如何检查GPS接收机的当前状态? 我已经检查了LocationListener onStatusChanged方法,但不知何故,似乎不工作,或者只是错误的可能性。 基本上我只需要知道在屏幕顶部的GPS图标闪烁(没有实际的修复)或固体(修复是可用的)。