Tag: 安卓

如何在进度对话框中设置取消button?

我想在ProgressDialog设置取消button。 以下是我的代码: myDialog = new ProgressDialog(BaseScreen.this); myDialog.setMessage("Loading…"); myDialog.setCancelable(false); myDialog.show(); 我想在这个ProgressDialog上设置一个onClickListenerbutton。 我试着用这个代码: myDialog.setButton("Cancel", new OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub myDialog.dismiss(); } }); 但它不工作。 我也尝试了其他类似的听众,但仍然没有成功。 我怎么解决这个问题?

Android的AsyncTaskLoader不启动loadInBackground?

我想在Android上实现一个加载器的例子,但无法启动加载器。 我正在使用下面的代码。 它会打“创build加载程序”,但它永远不会到达“加载启动”日志消息。 我错过了我需要的电话吗? 活动: public class TestingZoneActivity extends ListActivity implements LoaderCallbacks<ArrayList<Content>>{ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); getLoaderManager().initLoader(0, null, this); } @Override public Loader<ArrayList<Content>> onCreateLoader(int id, Bundle args) { Log.e("TEST", "Create Loader"); return new ImageLoader(this); } @Override public void onLoadFinished(Loader<ArrayList<Content>> loader, ArrayList<Content> data) { setListAdapter(new ImageAdapter(this, data)); } @Override public void onLoaderReset(Loader<ArrayList<Content>> […]

如何使ConstraintLayout使用百分比值?

在Android Studio 2.2的预览版1中,Google在其支持库中发布了一个新布局: ConstraintLayout 。 使用ConstraintLayout在Android Studio中使用devise工具更容易,但是我没有find使用相对大小(百分比或LinearLayout中的“权重”)的方法。 有没有一种方法来定义基于百分比的约束? 例如,使视图占用40%的屏幕,在视图之间创build20%的边距,将视图的宽度设置为另一个视图宽度的50%?

错误:任务':ProjectName:mergeDebugResources'的执行失败。 >嘎吱嘎吱的Cruncher *一些文件*失败,看到日志

尝试制作项目模块时出现此错误 apply plugin: 'com.android.library' android { compileSdkVersion 17 buildToolsVersion "19.1.0" defaultConfig { minSdkVersion 8 targetSdkVersion 8 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { compile files('libs/sdk.jar') compile files('libs/ads-lib.jar') compile project(':google-play-services_lib') compile files('libs/hdvdecoderandroid.jar') } 我该如何解决这个错误? 编辑 这是我的日志文件,当我尝试在命令行中构build它 org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':hDVietAndroid:m ergeDebugResources'. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAct ions(ExecuteActionsTaskExecuter.java:69) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(Ex […]

Android – 仅限垂直布局

我如何确保我的应用程序只用于垂直布局? 我曾尝试android:screenOrientation="portrait"但似乎并没有这样做。

如何在Android Studio中的模拟器上安装一个apk?

如何在terminal上的Android Studio中的模拟器上安装apk? 在Eclipse中,我们做到了 /home/pcname/android-sdks/platform-tools/adb -s emulator-5554 install /home/pcname/Downloads/apkname.apk 现在在Android Studio中怎么样?

Manifest Merger在Android Studio中出现多个错误

所以,我是一个初学Android和Java的人。 我刚开始学习。 我今天正在用意图进行实验时,发生了一个错误。 Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs 我在这里find了一些解决scheme并试图实现它们,但是它不起作用。 这是我的build.gradle: apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.0" defaultConfig { applicationId "com.example.rohan.petadoptionthing" minSdkVersion 10 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { […]

最好使用Android Studio或Intellij Idea插件?

我们有一个现有的java代码库,我们使用intellij想法进行开发。 我们正在构build一个android应用程序,我们将使用预先存在的代码和资源库来共享代码和其他资源。 由于Android Studio似乎主要是Intellij的修改版本,我的问题是Android Studio具有哪些完全特定的function是必不可less的? 不相容? “标准”? 与Intellij Idea社区还是终极? 这两个可以互换一个适当的插件集? 如果我们将Intellij Idea与各种Android支持插件一起使用,那么这些插件与android studio一样吗? 有了这套插件程序几乎可以互换? (我注意到“ant”的支持不在Android Studio中,尽pipe我需要的是一些能够从IDE调用可执行文件的菜单可configuration条目的各种命令 – 我现在使用intellij ant支持来做到这一点,因为它可用) 作为Google的“官方”工具,Intellij总是会落后于Android Studio。 如果它们显着不兼容,在两个系统之间使用通用资源和工具的最简单方法是什么? 这个问题需要经验的build议 – 我们最好在哪里投资我们的学习曲线和基础设施依赖,并打磨我们的混乱冲浪板? 谢谢。

什么是ImageView的默认ScaleType?

ImageView的默认ScaleType是什么?如果我在普通屏幕(320×480)上放置400像素x 400像素的图像而不指定ScaleType,图像将如何缩放? 谢谢。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/big_image" /> </RelativeLayout>

执行失败的任务:在Android Studio中的应用程序:compileDebugJavaWithJavac

我正在Android Studio中开发一个Android应用程序。 不太清楚哪里出了问题。 前几天我成功build设了。 任何帮助将是伟大的。 这是错误: Error:Execution failed for task ':app:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details. * What went wrong: Execution failed for task ':app:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details. 这是我的build.gradle apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "21.1.2" defaultConfig { multiDexEnabled true applicationId […]