zoukankan      html  css  js  c++  java
  • 改变shape solid color

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
    
        <solid android:color="#FF4081"/>
        <corners android:radius="15dp"/>
    </shape>
    <?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="forezp.com.changesolidcolorfromshape.MainActivity">
    
        <TextView
            android:id="@+id/tv"
            android:background="@drawable/button"
            android:layout_width="wrap_content"
            android:textSize="14sp"
            android:padding="10dp"
            android:textColor="#ffffff"
            android:layout_height="wrap_content"
            android:text="Hello World!" />
    </RelativeLayout>
    
    public class MainActivity extends AppCompatActivity {
        //http://stackoverflow.com/questions/16775891/how-to-change-solid-color-from-the-code
        private TextView tv;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            tv=(TextView)findViewById(R.id.tv);
            GradientDrawable myGrad = (GradientDrawable)tv.getBackground();
            myGrad.setColor(Color.BLACK);
        }
    }
  • 相关阅读:
    04机器学习实战之朴素贝叶斯
    06Web服务
    03机器学习实战之决策树scikit-learn实现
    03机器学习实战之决策树
    将两个列表合并为字典_其中一个列表为Key_一个列表为Value
    17反射
    16网络通信协议
    百练 2733 判断闰年 解题报告
    百练 2799 浮点数格式 解题报告
    lucene详细介绍
  • 原文地址:https://www.cnblogs.com/forezp/p/9852208.html
Copyright © 2011-2022 走看看