我需要在图像视图的左侧放置一条橙色线。我投入了“艰难的方式”并且它有效:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dp" >
<LinearLayout
android:layout_width="5dp"
android:layout_height="fill_parent"
android:background="#FF7F24" >
</LinearLayout>
<ImageView
android:id="@+id/image1"
android:layout_width="50dp"
android:layout_height="60dp"
/>
</LinearLayout>
有一种方法可以在不使用线性布局的情况下直接使用图像中的可绘制 xml 文件来实现此效果?
谢谢你的帮助!