そこで、動的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);