以下是一个使用Android水平滚动视图的代码示例:
HorizontalScrollView horizontalScrollView = findViewById(R.id.horizontalScrollView);
// 设置滚动条的可见性(可选)
horizontalScrollView.setHorizontalScrollBarEnabled(false);
// 设置滚动到起始位置
horizontalScrollView.scrollTo(0, 0);
LinearLayout linearLayout = findViewById(R.id.linearLayout);
// 创建并添加视图元素
TextView textView1 = new TextView(this);
textView1.setText("Element 1");
linearLayout.addView(textView1);
TextView textView2 = new TextView(this);
textView2.setText("Element 2");
linearLayout.addView(textView2);
// 添加更多视图元素...
通过以上步骤,你将能够创建一个包含水平滚动视图和内部视图的Android应用程序。注意,在实际开发中,你可能需要根据自己的需求进行更多的自定义和调整。
上一篇:Android水平分屏
下一篇:Android水平滚动视图不滚动