Questions tagged «android»

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




8
从源代码中的res / values / dimension.xml加载维度值
我想按原样加载该值。我有两个dimension.xml文件,一个在/res/values/dimension.xml另一个/res/values-sw360dp/dimension.xml。 从源代码,我想做类似的事情 getResources().getDimension(R.dimen.tutorial_cross_marginTop); 这可行,但是我得到的值乘以屏幕密度系数(对于hdpi为1.5,对于xhdpi等为2.0)。 我也试着做 getResources().getString(R.dimen.tutorial_cross_marginTop); 从原理上讲这可以工作,但是我得到一个以“ dip”结尾的字符串...

19
在线性布局中将按钮居中
我正在使用线性布局来显示漂亮的初始屏幕。它具有1个按钮,该按钮应该在屏幕的水平和垂直方向上居中。但是,无论我尝试做什么,按钮都将使顶部居中对齐。我在下面包含了XML,有人可以指出正确的方向吗? <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageButton android:id="@+id/btnFindMe" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical|center_horizontal" android:background="@drawable/findme"></ImageButton> </LinearLayout>
337 xml  android  layout 


21
API'variant.getExternalNativeBuildTasks()'已过时,并已替换为'variant.getExternalNativeBuildProviders()
使用带有gradle插件版本的Android Studio 3.3 Canary 11 3.3.0-alpha11。尝试同步gradle时抛出以下错误 WARNING: API 'variant.getExternalNativeBuildTasks()' is obsolete and has been replaced with 'variant.getExternalNativeBuildProviders()'. It will be removed at the end of 2019. For more information, see https://d.android.com/r/tools/task-configuration- avoidance Affected Modules: app 单击错误将我引导至gradle文件中的这一行 applicationVariants.all { variant -> variant.outputs.all { outputFileName = "${variant.name}-${variant.versionName}.apk" } } 我到底需要在这里更改什么? 项目 build.gradle …


4
升级到AppCompat v22.1.0,现在获得IllegalArgumentException:AppCompat不支持当前的主题功能
我刚刚升级了我的应用程序以使用新发布的v22.1.0 AppCompat,现在打开应用程序时出现以下异常。 Caused by: java.lang.IllegalArgumentException: AppCompat does not support the current theme features at android.support.v7.app.AppCompatDelegateImplV7.ensureSubDecor(AppCompatDelegateImplV7.java:360) at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:246) at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:106) 我如何解决它?

16
如何在Android中调整位图的大小?
我从我的远程数据库中获取了一个Base64字符串的位图,(encodedImage是用Base64表示图像的字符串): profileImage = (ImageView)findViewById(R.id.profileImage); byte[] imageAsBytes=null; try { imageAsBytes = Base64.decode(encodedImage.getBytes()); } catch (IOException e) {e.printStackTrace();} profileImage.setImageBitmap( BitmapFactory.decodeByteArray(imageAsBytes, 0, imageAsBytes.length) ); profileImage是我的ImageView 好的,但是在将其显示在我ImageView的布局中之前,我必须调整此图像的大小。我必须将其尺寸调整为120x120。 有人可以告诉我调整代码的大小吗? 我发现的示例无法应用于获得的base64字符串位图。
336 android  bitmap  base64 


7
Android中的URL编码
您如何在Android中编码URL? 我以为是这样的: final String encodedURL = URLEncoder.encode(urlAsString, "UTF-8"); URL url = new URL(encodedURL); 如果执行上述操作,则将http://in urlAsString替换为http%3A%2F%2Fin encodedURL,然后java.net.MalformedURLException在使用URL时得到 。
335 android  url  urlencode 



22
在Android上设置imageview的透明背景
我正在使用要在其中添加图像视图的Web视图。如何将该图像视图的背景设置为透明? 我已经试过了: mImageview.setBackgroundResource(R.color.trans); 哪里trans→ <color name="trans">#00000000 </color>。

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.