所以,我正在尝试制作一个动态 UI,并且我想为其添加一个分隔符。不幸的是,我只能找出如何用 XML 做一个。可以转这个吗
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/seperator"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingTop="2dp"
android:scaleType="fitXY"
android:src="@android:drawable/divider_horizontal_dark" />
进入程序代码?
我最好的尝试是
ImageView seperator=new ImageView(this);
seperator.setImageDrawable(drawable.divider_horizontal_dark);