当我启动应用程序时,我的horizontallistview中的项目出现在设备屏幕的右侧。但是,只要在运行时将项目添加到列表视图,它就会对齐到屏幕的左侧。如何修改我的代码,使我的列表视图从第一个屏幕的右侧出现。 在此,我附上了自定义列表视图项的代码。
//水平列表视图代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<com.example.app.ui.HorizontalListView
android:id="@+id/hlistview"
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="@color/colorPrimary"
android:paddingLeft="5dp"
android:paddingRight="5dp"/>
</LinearLayout>