Tag: 安卓

SpannableString与图像的例子

我正在寻找如何构build和显示与图像跨度SpannableString的例子。 像面带笑容显示的东西。 非常感谢

如何在每个Android应用程序/进程中使用多个MapActivities / MapViews

我写了一个MapActivity类,它能够显示一组地方以及单个地方。 启动时,应用程序创build此MapActivity一个实例并显示多个位置。 如果用户点击某个地方,则启动一个新的“ Activity ,显示所选地点的详细信息。 这个活动有一个菜单项,允许用户查看地图上的位置 – 这会导致创build一个新的MapActivity实例,除了现在只显示这个地方。 现在的问题是,如果用户导航回到第一个MapActivity (显示多个地方的那个),则不会再加载瓦片+有时会遇到OutOfMemoryErrors。 根据Android JavaDocs,每个进程只能有一个MapActivity 。 但是,我不想将我的MapActivity定义为singleInstance / singleTask,因为用户应该始终能够导航回显示多个位置的第一个MapActivity。 我已经看到,Google地图应用(与Google Map 4.4一起)为Android使用多个MapActivity实例。 这怎么可能? 我怎么能在我的应用程序中实现它?

android youtube用静态的用户名和密码上传video

我正在上传video到YouTube,默认上传到用户login谷歌帐户。 但我想设置所有的video应该上传使用我的静态gmailID和密码 是否有可能直接使用静态emailid和密码login谷歌帐户? 或者在YouTube上传video的任何其他好的API或示例。 提前致谢….

如何从Firebase android获取所有的子列表

我想从Android中的Firebase的所有孩子列表。 我已经实现这个代码,但它不工作。 mFirebaseRef = new Firebase(FIREBASE_URL); mFirebaseRef.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { List<String> td = (ArrayList<String>) dataSnapshot.getValue(); //notifyDataSetChanged(); } @Override public void onCancelled(FirebaseError firebaseError) { } });

SharedPreferences文件

有人知道具有实际存储的SharedPreferences的文件位于何处?

getLastKnownLocation返回null

我已经阅读了一些关于这方面的问题,但是我没有find我需要的答案。 所以,案件是,我有我的地图设置,我想抢我当前的GPS位置。 我已经检查,我的variables不是NULL,但我的结果来自: getLastKnownLocation(provider, false); 虽然给我空,所以这是我需要帮助的地方。 我已经添加了COARSE + FINE位置的权限。 但是我通常会为我的手机禁用所有types的networking数据,因为我对手机账单中不可预知的数据stream开支并不满意。 所以我只有WiFi启用和连接为这个testing。 还有什么我需要启用,为了这是可能的? 我会认为WiFi应该足够了吗?

执行失败的任务':app:compileDebugAidl':aidl缺失

我在电脑上安装了Android Studio。 我创build了一个新的项目,但是我得到了下面的错误。 我能做什么? Error:Execution failed for task ':app:compileDebugAidl'. > aidl is missing 我的Android Studio版本是1.1.0 。 这是我的build.gradle文件: buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } } 和: […]

将Google Play服务版本添加到应用的清单中?

我正在关注本教程: https : //developers.google.com/maps/documentation/android/start#overview了解如何将Google地图添加到Android SDK中的应用程序。 我似乎在这一点(我做了一切都没有错误),唯一的问题是: Edit your application's AndroidManifest.xml file, and add the following declaration within the <application> element. This embeds the version of Google Play services that the app was compiled with. <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> The error is: No resources found that match the given name (at 'value' with value '@integer/ google_play_services_version'). […]

在Android中使用BroadcastReceiver注册耳机button

我有一个单一的button,并希望做一个简单的吐司当button按下的耳机。 现在我有以下代码: public class MediaButtonIntentReceiver extends BroadcastReceiver { public MediaButtonIntentReceiver() { super(); } @Override public void onReceive(Context context, Intent intent) { String intentAction = intent.getAction(); if (!Intent.ACTION_MEDIA_BUTTON.equals(intentAction)) { return; } KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT); if (event == null) { return; } int action = event.getAction(); if (action == KeyEvent.ACTION_DOWN) { // do something Toast.makeText(context, "BUTTON […]

当再次select当前所选项目时,如何在Android微调器中获取事件?

我已经写了一个setOnItemSelectedListener让微调框在微调项目被改变时作出响应。 我的要求是当我再次点击当前select的项目时,应该显示敬酒。 如何得到这个事件? 当再次点击当前select的项目时,微调器没有响应。 ` StorageSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener(){ @Override public void onItemSelected(AdapterView adapter, View v, int i, long lng) { Toast.makeText(getApplicationContext(), (CharSequence) StorageSpinner.getSelectedItem(), Toast.LENGTH_SHORT).show(); } @Override public void onNothingSelected(AdapterView arg0) { Toast.makeText(getApplicationContext(), "Nothing selected", Toast.LENGTH_SHORT).show(); } });