小编her*_*rtD的帖子

如何在XML中转义"&"?

可能重复:
如何在XML中转义&符号?

我写

 <string name="magazine">Newspaper & Magazines</string>
Run Code Online (Sandbox Code Playgroud)

在strings.xml中

但是编译器说:

The entity name must immediately follow the '&' in the entity reference.    strings.xml /OOReaderWidget/res/values  line 9  Android XML Format Problem
Run Code Online (Sandbox Code Playgroud)

那么如何在strings.xml中显示"&"?谢谢!

xml

195
推荐指数
3
解决办法
36万
查看次数

如何以编程方式调整自定义视图的大小?

我正在编写一个自定义视图,从RelativeLayout扩展,我想以编程方式调整它,我该怎么办?

自定义视图类是这样的:

public ActiveSlideView(Context context, AttributeSet attr){
        super(context, attr);
        LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if(inflater != null){       
            inflater.inflate(R.layout.active_slide, this);
        }
Run Code Online (Sandbox Code Playgroud)

android resize

158
推荐指数
9
解决办法
23万
查看次数

怎么办android mm干净?

我正在使用该mm命令在Android源代码中构建自定义模块.

当我跑步时mm clean,似乎整个项目都被清理干净了.

如何将清洁限制在当前模块中?

android makefile android-build

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

如何观察内容提供者的变化?安卓

我创建了一个Contentprovide并实现了它的update()方法,如下所示:

@Override
public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
    final SQLiteDatabase db = mHelper.getWritableDatabase();
    int count = db.update(InslideDB.FOLDER_TABLE, values, selection, selectionArgs);

    /* To notify the observer */
    this.getContext().getContentResolver().notifyChange(URI, null);  
    return count;
}
Run Code Online (Sandbox Code Playgroud)

如何在appwidget中收到通知?谢谢!

我正在尝试这个解析器,但没有Log(-------------------- Date Changed)打印:

class DataProviderObserver extends ContentObserver {
    private AppWidgetManager mAppWidgetManager;
    private ComponentName mComponentName;

    DataProviderObserver(AppWidgetManager mgr, ComponentName cn, Handler h) {
        super(h);
        mAppWidgetManager = mgr;
        mComponentName = cn;
    }

    @Override
    public void onChange(boolean selfChange) {
        super.onChange(selfChange);  //NOTE: Have to call this. dwy.

        // …
Run Code Online (Sandbox Code Playgroud)

android notify android-contentprovider android-appwidget

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

一些"Android开发/ SDK工具"有什么区别?

Android开发工具和Android SDK工具以及Android SDK平台工具和Android SDK构建工具有什么区别?

为什么不将它们中的一些合并为更少的组?当我降级/升级它们时,4个工具让我很困惑.

android adt android-build android-sdk-tools

13
推荐指数
2
解决办法
9115
查看次数

Android File.exists()不区分大小写吗?

我创建了一个新文件夹"sdcard/dd ":

File album = new File(albumPath);

if (album.exists()) {
   Log.d(TAG, albumPath + " already exists.");
} else {
   boolean bFile = album.mkdir();
}
Run Code Online (Sandbox Code Playgroud)

再次,我用相同的代码创建第二个文件夹"sdcard/DD ",但是,这次album.exists()返回true,表示"dd"等于"DD".

任何人都知道为什么File.exists()不能检查文件夹名称的情况?谢谢!

android file exists case-sensitive mkdir

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

如何禁用选项键在Mac OS中键入希腊字母?

我正在使用Mac Os版本10.9 Mavericks,当我使用Option +键时,它会打印希腊字母,例如åß∂ƒ...,如何禁用此功能?因为它与IDE中的某些emacs密钥冲突.

macos option

8
推荐指数
2
解决办法
2251
查看次数

这个Android Lint意味着什么:"错误的方向?"

我在eclipse中运行Android lint并收到错误:

错误的方向?没有指定方向,默认是水平的,但是这个布局有多个子节点,其中至少有一个有layout_width ="match_parent"

问题:检查具有多个子项的LinearLayouts是否设置方向Id:Orientation

这是错误代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="@dimen/cell_height_1_of_3" >

    <ImageView
        android:id="@+id/item_cover"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_gravity="left"
        android:layout_marginLeft="8dp"
        android:scaleType="fitCenter"
        android:src="@drawable/doc_item_icon" />

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="@dimen/cell_height_1_of_3"
        android:background="#0000"
        android:padding="5dp"
        android:scaleType="centerInside"
        android:visibility="gone" />

    <TextView
        android:id="@+id/item_title"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="1"
        android:text="Add new"
        android:textColor="@color/office_color"
        android:textSize="@dimen/textview_small_size" />

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

这是什么意思?如果我忽略这个lint错误会发生什么?

android lint orientation

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

如何通过位置获得雅虎的阵营?

// Get woeid by lati/long
            HttpGet hg = new HttpGet(
                        "http://where.yahooapis.com/geocode?location=" + latlon + "&flags=J&gflags=R)");
            HttpClient hc = new DefaultHttpClient();
            HttpResponse weatherHR = hc.execute(hg);

            if (weatherHR.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
                if (DEBUG)
                    Utils.log("", "Location != HttpStatus.SC_OK");
                return null;
            }
Run Code Online (Sandbox Code Playgroud)

我使用过这个API,之前它运行正常,但是从今天起它返回错误,HttpStatus.SC_OK不行.该API已关闭吗?谢谢.

yahoo weather geolocation

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

使用PHP将SVG转换为具有多个图像层的PNG

我用这段代码转换svgpng图像

<?php 
exec('/usr/bin/rsvg-convert -w 1000 -h 1000 tshirt.svg -o tshirt.png');
?>
Run Code Online (Sandbox Code Playgroud)

这适用于单个svg图像.

实际上我有一个svg包含多层图像的图像,如:

第1层 - :这是透明的背景T恤图像

第二层 - :这是另一个包含颜色的T恤图像

第3层 - :这是应该放在T恤上的小贴纸图片

我的svg代码是 - :

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg crossOrigin="anonymous" width="1000px" height="1000px" version="1.1"   xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink">

    <g class="canvas_background">
        <rect class="canvas_variant_color" width="998" height="998" x="0" y="0" style="" fill="#008080"/>
        <rect real_size="16,22" height="547" class="canvas_border" width="343" y="160" x="335" fill="#008080" />        
    </g>

    <g class="canvas_objects" style="" mask="url('#Sibnip5tjg')">
        <g style="display: block;" transform="matrix(1,0,0,1,-146.5,-236.3909)">
            <image …
Run Code Online (Sandbox Code Playgroud)

php svg png inkscape rsvg

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