android 使用HorizontalScrollView 实现标题带动内容左右切屏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 使用HorizontalScrollView 实现标题带动内容左右切屏相关的知识,希望对你有一定的参考价值。
android 使用HorizontalScrollView 实现标题带动内容左右切屏
在布局中添加<HorizontalScrollView>标签,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <HorizontalScrollView android:id="@+id/horizontalScrollView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" > </HorizontalScrollView> </RelativeLayout>
注意:此处在布局中的HorizontalScrollView 中直接添加一个LinearLayout布局,
出现子布局已有父布局,要先使用removeVie() 剔除父子关系,但是,没有实现,
最终使用new的方式来获取LinearLayout , 在向LinearLayout不居中添加子View
final LinearLayout layout = new LinearLayout(this);
逻辑代码中,通过向HorizontalScrollView中添加
一个LinearLayout,在向LinearLayout中添加子View
public class MainActivity extends Activity { private HorizontalScrollView hsv ; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); hsv = (HorizontalScrollView) findViewById(R.id.horizontalScrollView1); initView(); } public void initView() { String[] mtexts = { "焦点", "国内", "国外", "军事", "焦点", "国内", "国外", "军事", "更多" }; final LinearLayout layout = new LinearLayout(this);
//添加子View
for (int i = 0; i < mtexts.length; i++) { Button btn = new Button(this); btn.setId(i); btn.setText(mtexts[i]); layout.addView(btn); } hsv.addView(layout); } }
android 使用HorizontalScrollView 实现标题带动内容左右切屏
以上是关于android 使用HorizontalScrollView 实现标题带动内容左右切屏的主要内容,如果未能解决你的问题,请参考以下文章
想要使用cordova/android禁用android的HardBack按钮
Android 安装包优化Android 中使用 SVG 图片 ( 使用 appcompat 支持库兼容 5.0 以下版本的 Android 系统使用矢量图 )