小编YuD*_*oid的帖子

在Android中以编程方式确定摄像机分辨率(即百万像素)

我正在开发2.2中的Android应用程序,它使用Camera.现在任何人都可以告诉我"是否有可能以编程方式确定Android中的百万像素的相机分辨率"

camera android resolution

23
推荐指数
3
解决办法
4万
查看次数

在模块 classes.jar com.google.android.gms:play-services-measurement-impl 中发现重复的类 com.google.android.gms.internal.measurement.zzdu:

这个问题可能是在其他一些上下文和依赖关系中提出的。但我仍然无法弄清楚这一点,即使花了一整天。

因此,下面我将完整的错误日志与我的项目级 Gradle 文件和应用级 Gradle 文件一起粘贴。

尝试运行应用程序时的错误日志:

Duplicate class com.google.android.gms.internal.measurement.zzdu found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzdv found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzdw found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzdx found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzdy found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzdz found in modules classes.jar (com.google.android.gms:play-services-measurement-impl:17.0.0) and classes.jar (com.google.firebase:firebase-analytics-impl:15.0.2)
Duplicate class com.google.android.gms.internal.measurement.zzea found in modules classes.jar …
Run Code Online (Sandbox Code Playgroud)

android gradle android-studio

15
推荐指数
2
解决办法
9122
查看次数

Android上的CSS字体

我正在@font-face网站上展示League Gothic,但它并没有出现在Android 1.6上.这是我用Font Squirrel的@ font-face生成器生成的代码

@font-face {
    font-family: 'LeagueGothicRegular';
    src: url('/fonts/League_Gothic-webfont.eot');
    src: local('?'), url('/fonts/League_Gothic-webfont.woff') format('woff'), url('/fonts/League_Gothic-webfont.ttf') format('truetype'), url('/fonts/League_Gothic-webfont.svg#webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

font-family:'LeagueGothicRegular',Impact,Charcoal,sans-serif;
Run Code Online (Sandbox Code Playgroud)

如果@font-face不支持,这不是什么大问题(我读到@font-faceAndroid 2 中的支持完全消失了).但是联盟哥特式是非常浓缩的,所以我想为Android指定一个比默认的sans-serif更好的后备字体,所以设计并没有完全破解.

这样的事情将是完美的:http: //www.droidfonts.com/info/droid-sans-condensed-fonts/

但我找不到Android附带的默认字体的确切列表,以及我应该用它来在CSS中引用它们的名称.

编辑 到目前为止答案错过了重点(或者说我严重的问题) - 我所追求的是Android附带的系统字体列表.事情是这样的Android.

css android font-face

14
推荐指数
3
解决办法
4万
查看次数

将"M/d/yyyy h:mm:ss tt"转换为"YYYY-MM-DDThh:mm:ss.SSSZ"

正如标题所示,我想要做的是转换我的日期字符串,例如

  • "6/6/2014 12:24:30 PM" (M/d/yyyy h:mm:ss tt) 格式

  • "YYYY-MM-DDThh:mm:ss.SSSZ" 格式.

我正在尝试以下方式.它没有给我任何例外,但我得到的价值如下:

  • "YYYY-06-DDT12:24:30.SSSZ"

我怎样才能完全实现这一目标?

string LastSyncDateTime = "6/6/2014 12:24:30 PM";
DateTime dt = DateTime.ParseExact(LastSyncDateTime, "M/d/yyyy h:mm:ss tt",CultureInfo.InvariantCulture);
string result = dt.ToString("YYYY-MM-DDThh:mm:ss.SSSZ");
Run Code Online (Sandbox Code Playgroud)

c# string datetime

5
推荐指数
1
解决办法
1万
查看次数

Android中的AdMob"AdView缺少必需的XML属性'adSize'"

我正在尝试在我的应用程序中实现AdMob.但不知道它显示此错误,我的R.java文件由于它没有生成.我已经尝试了所有方法来解决这个问题,比如Clean,Build,Build All.但非对我有用.在我的代码片段中显示错误"解析XML时出错:未绑定前缀"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" 
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical"
android:background="@color/bgcolor">

<LinearLayout
android:id="@+id/Linearlayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<com.google.ads.AdView android:id="@+id/adView"
                         android:layout_width="wrap_content"
                         android:layout_height="wrap_content"
                         ads:adSize="BANNER"
                         ads:adUnitId="XXX"
                         ads:refreshInterval="60"/>


</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

请帮帮我.我被困在这里:(

android admob xml-parsing

4
推荐指数
2
解决办法
1万
查看次数

如何在android中包含如下图所示的方根符号?

我需要在我的android中包含以下平方根符号作为Button控件中的Text资源.任何猜测?

平方根符号

android square-root

4
推荐指数
1
解决办法
1万
查看次数

如何从我当前的应用程序中打开android中的PrinterShare应用程序

在我开发Android应用程序时,我遇到了启动安装在我的Android手机上的PrinterShare应用程序的需要.我希望当用户点击Button我的应用程序中的控件时,它应该启动PrinterShare应用程序.当用户完成他/她需要打印的文档时,它应该从它启动时返回到主应用程序.

任何想法,代码片段将不胜感激.谢谢.. :-)

android android-intent

1
推荐指数
1
解决办法
3389
查看次数

如何在Java中声明和使用静态枚举

我搜索了关于我的问题的SO,但没有找到符合我情况的相关示例.

public class Game{
        static enum Tile
              {
                static //Syntax error, insert "Identifier" to complete EnumConstantHeader
                {
                  DIRT = new Tile("DIRT", 1); //Cannot instantiate the type Game.Tile
                  GRASS = new Tile("GRASS", 2);
                  ROCK = new Tile("ROCK", 3);
                  EXIT = new Tile("EXIT", 4);
                  PLAYER = new Tile("PLAYER", 5);
                  PLAYER_LEFT = new Tile("PLAYER_LEFT", 6);
                  PLAYER_RIGHT = new Tile("PLAYER_RIGHT", 7);
                 //For all above declared fields, I am getting this compile time errors :
                 /*
                  Multiple markers at this line
                     - Cannot instantiate the …
Run Code Online (Sandbox Code Playgroud)

java enums

0
推荐指数
1
解决办法
291
查看次数