我正在尝试在这个应用程序中创建一个不错的应用程序;
我想制作一个时间轴,时间轴将包含"Image", "2 TextBlock" and "2 Buttons"
。
如何创建类似的东西。我将从web api service
获取我的数据。
我发现进行异步调用以获取数据但无法创建时间轴的模式。
我该怎样做?
等你的建议,谢谢你。我搜索了这么多,但始终找到基本的listviews
。
答案 0 :(得分:1)
<LinearLayout orientation="vertical">
</ImageView>
<LinearLayout orientation="horizontal">
</TextBox>
</TextBox>
</LinearLauout>
<LinearLayout orientation="horizontal">
</Button>
</Button>
</LinearLauout>
</LinearLayout>
答案 1 :(得分:1)
下图描述了您网页的设计视图
编辑:如何将线性布局分成2个?
<LinearLayout 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"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/btn_row"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="10" >
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="5"
/>
<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="5" />
</LinearLayout>
</LinearLayout>