图层列表中的色调位图

时间:2014-10-23 09:05:08

标签: android bitmap tint

我试图将色调应用于<内部的位图layer-list>

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape  xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
            <solid android:color="@color/grey" />
            <size android:width="45dp" android:height="45dp"/>
        </shape>
    </item>
    <item android:left="5dp" android:right="5dp" android:top="5dp" android:bottom="5dp">
        <bitmap android:src="@drawable/ic_action" android:tint="#FF000000"   />
    </item>
</layer-list>

预览显示它应该可以工作,FROM ANDROID-STUDIO: enter image description here

但在部署到设备上时它并没有色调:enter image description here

如果我在布局中使用ImageView,它确实正确,但是使用了图层列表失败了。 我相信我已经尝试过每一个没有结果的tintMode。

3 个答案:

答案 0 :(得分:8)

对于任何可能遇到此问题的人。这就是我所做的。

设置

  • Android Studio 2.3.2
  • Windows 10

    摇篮

  • minSdkVersion 15

  • targetSdkVersion 25
  • compile&#39; com.android.support:appcompat-v7:25.3.1&#39;

测试设备

  • 华硕Padfone X And​​roid v4.4.2
  • 三星Galaxy S3 Android v6.0
  • 三星Galaxy S7 Android v7.0

图层可绘制 我将android:id=@+id/bitmapID添加到包含位图的项目

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape android:shape="oval">
            <solid android:color="#9e9e9e" />
            <size android:width="45dp" android:height="45dp"/>
        </shape>
    </item>
    <item
        android:id="@+id/tintDrawableImg"
        android:left="5dp"
        android:right="5dp"
        android:top="5dp"
        android:bottom="5dp">
        <bitmap android:src="@mipmap/ic_pencil" android:tint="#860000"   />
    </item>
</layer-list>

活动布局 我将图层drawable添加到ImageView

<ImageView
    android:id="@+id/tintLayerTest"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:src="@drawable/test_layer"/>

<强> MainActivity 在onCreate()方法中,我们可以从图层drawable中找到位图 使用findViewByID

public class MainActivity extends AppCompatActivity {

    ImageView iv;
    LayerDrawable ld;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Declare ImageView containing LayerDrawable
        iv = (ImageView)findViewById(R.id.tintLayerTest);
        //Get LayerDrawable from ImageView
        ld = (LayerDrawable)iv.getDrawable();
        //Get specific Drawable/Bitmap from within LayerDrawable
        //by ID and pass it as an independent Drawable
        Drawable ldDrawable = ld.findDrawableByLayerId(R.id.tintDrawableImg);

        //Pass your new Drawable to DrawableCompat.setTint
        //and define your color int
        DrawableCompat.setTint(ldDrawable, ContextCompat.getColor(this, R.color.colorAccent));

    }
}

我希望这可以帮助遇到这个问题的其他人。

答案 1 :(得分:0)

尝试使用位图标记使用xml drawable

保存以下文件xml custom_image.xml并替换图标和颜色

src/shared-models

答案 2 :(得分:-1)

正如@lucidbrot 在评论中提到的那样,android:tint 现在应该可以正常工作了。