我正在尝试创建一个水平滚动视图,它应该包含一些可水平滚动的视图。
初始视图是一个水平滚动视图,里面有一个线性布局
我有另一个视图,类似于显示城市天气的屏幕。
如果我的数据库中有 5 个城市,我想将 5 个视图实例添加到水平滚动视图中。每个实例都有自己的事件,例如点击和 http 请求。
我可以从 xml 创建一个水平滚动视图,但我想动态地做。我一直在寻找一些例子来尝试找到一个起点,但似乎什么都没有。
有人可以指出我正确的方向吗?
这是我的水平滚动视图 xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<RelativeLayout android:layout_height="50dp"
android:id="@+id/TableRow01" android:layout_width="fill_parent"
android:background="#82db7a">
<ImageView android:id="@+id/imageView1" android:src="@drawable/logo_topbar"
android:layout_height="wrap_content" android:layout_width="wrap_content" />
<ImageButton android:background="@drawable/topicon_btn"
android:src="@drawable/btn_icon_locateme" android:layout_gravity="center_vertical"
android:layout_height="45dp" android:id="@+id/locatemebtn"
android:layout_width="wrap_content" android:layout_centerVertical="true"
android:layout_alignParentRight="true" android:layout_margin="5dp" />
<ImageButton android:background="@drawable/topicon_btn"
android:src="@drawable/btn_icon_star" android:layout_height="45dp"
android:id="@+id/favbtn" android:layout_width="wrap_content"
android:layout_toLeftOf="@+id/locatemebtn" android:layout_alignTop="@+id/locatemebtn"
android:layout_alignBottom="@+id/locatemebtn" />
</RelativeLayout>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:fillViewport="true"
android:id="@+id/scrollView1" android:layout_height="fill_parent"
android:layout_width="fill_parent" >
<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android_id="@+id/mainScroll">
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
这就是我尝试添加视图的方式(只是为了测试它是否有效,尽管我不确定它是否有效,视图只是一个布局或具有功能的布局)
LinearLayout mainscroll=(LinearLayout) findViewById(R.id.mainScroll);
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = vi.inflate(R.layout.weather_tab, null);
mainscroll.addView(view);
由于滚动视图只能有一个孩子,我在里面添加了一个线性布局(不确定它是否应该是线性布局),我想将我的视图的所有实例添加到线性布局中。
PS:我已经为 iphone 做了同样的应用程序,没有太多的痛苦。Android似乎让我太困惑了:(