纵向中的单列ListView但是横向中的两列?

时间:2012-11-20 03:47:11

标签: android listview

我正在制作一个显示电话联系人的列表。它起作用但在横向方向看起来不太好,因为它只是伸展开来。

所以我决定在横向和在Portrait 中的一列中创建两列。我似乎无法通过谷歌搜索找到任何参考。

有什么办法吗?如果我只需要将自定义XML放在layout-land文件夹

中,那就太好了

由于

[UPDATE]

在肖像中它将是这样的:

name 1
name 2
name 3
name 4

在风景中:

name 1    name 2
name 3    name 4

2 个答案:

答案 0 :(得分:1)

查看Fragment s http://developer.android.com/training/basics/fragments/index.html

基本上你会有两个布局文件夹,就像你建议的那样。

  • res / layout / main.xml(用于portiat)
  • res / layout-land / main.xml(用于横向)

您将界面构建到Fragment中,并将其中两个放置在横向中,一个放在纵向中。例如

public class ContactListFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.contact_list, container, false);
        // do your work
        return view;
    }
}

public class MainActivity extends FragmentActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // configure your fragments here.
    }
}

<强> RES \布局\ main.xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <fragment android:name="com.example.android.fragments.ContactListFragment"
              android:id="@+id/contact_list_fragment"
              android:layout_width="match_parent"
              android:layout_height="match_parent" />

</LinearLayout>

<强> RES \布局陆\ main.xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <fragment android:name="com.example.android.fragments.ContactListFragment"
              android:id="@+id/contact_list_fragment1"
              android:layout_weight="1"
              android:layout_width="0dp"
              android:layout_height="match_parent" />

    <fragment android:name="com.example.android.fragments.ContactListFragment"
              android:id="@+id/contact_list_fragment2"
              android:layout_weight="1"
              android:layout_width="0dp"
              android:layout_height="match_parent" />


</LinearLayout>

答案 1 :(得分:0)

您应该使用GridView。根据方向,将numColumns字段更改为1或2。