border.xml(在drawable文件夹中)
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<shape xmlns:android="http://schemas.android.com/apk/ res/android">
<stroke android:width="2dp"
android:color="#000"/>
<corners android:radius="10dp" />
<padding android:left="10dp"
android:top="5dp"
android:right="10dp"
android:bottom="5dp"/>
</shape>
</selector>
activity_main.xml中
<TextView
android:id="@+id/textView"
android:layout_width="100dp"
android:layout_height="20dp"
android:layout_marginBottom="16dp"
android:layout_marginEnd="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/border"
android:text="TextView"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
我无法使用上面的代码获取textview中的边框。约束布局宽度和高度设置为match_parent。
答案 0 :(得分:1)
我认为你在border.xml文件中出错了。
尝试用这个进行测试:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>
如果它有效则表示语法中有错误。 (可能很难使用选择器)