在主要活动中组合代码

时间:2013-03-12 13:14:12

标签: android listview android-activity

我已经使用该模板在android中创建选项卡和滑动程序,但现在无法在主活动中创建列表。如何组合以下两段代码?

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" />


<?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">

<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="#b5b5b5"
    android:dividerHeight="1dp"
    android:listSelector="@drawable/list_selector" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

该行

<?xml version="1.0" encoding="utf-8"?>

必须掌握一切。 ViewPager不应该是布局的根元素。我建议将LinearLayout设置为主要布局的根元素,并将ViewPager设置为内部。

我猜this tutorial可能会有所帮助。它使用Android的Fragments