我以编程方式从右侧开始向线性布局添加一些文本视图,因此请添加
<LinearLayout
android:id="@+id/results"
android:layout_width="wrap_content"
android:layout_height="30sp"
android:layout_gravity="right"
android:orientation="horizontal"
android:paddingLeft="12sp"
android:paddingRight="12sp" />
并编码
LinearLayout results= (LinearLayout)findViewById(R.id.results);
TextView res = new TextView(this);
res.setId(resultsCounter );
res.setText(evaluated);
...............
results.addView(res);
这个工作正常,但我无法无限期添加新项目,所以我添加了一个水平滚动视图
<HorizontalScrollView
android:id="@+id/scrollresults"
android:layout_width="fill_parent"
android:layout_height="35sp"
android:layout_marginRight="12sp"
>
<LinearLayout
android:id="@+id/results"
......
</HorizontalScrollView>
但填充LinearLayout我只能滚动到右边,所以我丢失了最左边的项目