为了账号安全,请及时绑定邮箱和手机立即绑定

是否可以使用android:DrawableRight在Buttons和TextViews

是否可以使用android:DrawableRight在Buttons和TextViews

开满天机 2019-11-08 13:52:10
当我在textview或imageview中使用VectorDrawable资产时,使用“ android:DrawableRight” /“ android:DrawableEnd” /“ android:DrawableStart” /“ android:DrawableLeft”时出现运行时崩溃。该应用程序将正常编译,而不会发出任何警告。我在用摇篮1.5支持库23.2('com.android.support:appcompat-v7:23.2.0')不过,我发现我可以以编程方式在Java中分配SVG,而不会发生此类崩溃。TextView tv = (TextView) findViewById(R.id.textView);tv.setCompoundDrawablesWithIntrinsicBounds(null,null, getResources().getDrawable(R.drawable.ic_accessible_white_36px),null);(我怀疑这是23.2的支持库错误。)但是是否可以对SVG资产使用drawableRight等?这是我的布局<?xml version="1.0" encoding="utf-8"?><RelativeLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context="au.com.angryitguy.testsvg.MainActivity"><TextView    android:id="@+id/textView"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:drawableRight="@drawable/ic_accessible_white_36px"    android:background="@color/colorPrimary"    android:textColor="#FFFFFF"    android:textSize="22sp"    android:text="Hello World!"/></RelativeLayout>这是我的活动package au.com.angryitguy.testsvg;import android.content.Intent;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.Button;public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        }    }这是Google物料设计网站中未经修改的VectorDrawable资产。
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 725 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信