0

真ん中にテーブルを置き、上下にボタンを配置したいページがあります。レイアウト用に次の XML があります。しかし、私はそれがうまくいかないことを解決することができます!

編集:達成したいことを示すために XML を更新しました。内部のテーブルですが、アクセスできませんListView listView = (ListView) findViewById(R.id.lvLocation);

ここに画像の説明を入力

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

    <Button
        android:id="@+id/btnAdd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="Add Item" />

       <ListView
           android:id="@+id/lvLocation"
           android:layout_width="match_parent"
           android:layout_height="fill_parent"
           android:layout_above="@+id/btnBack"
           android:layout_alignParentLeft="true"
           android:layout_below="@+id/btnAdd"
           android:drawSelectorOnTop="false" >

    </ListView>

    <Button
        android:id="@+id/btnBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:text="Back" />

</RelativeLayout>

私のコード:(Db呼び出しと配列のセットアップを取り出して)

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_location_list_view);


    ListView listView = (ListView) findViewById(R.id.lvLocation);
    final ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
          android.R.layout.simple_list_item_2, android.R.id.text1, mArrayList);

    int[] colors = {0, 0xFFFF0000, 0}; 
    listView.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
    listView.setDividerHeight(1);
    listView.setAdapter(adapter); 

    }



}

これが私が達成しようとしていることです。色ではなく、コンセプトだけです。

ここに画像の説明を入力

4

2 に答える 2

1

これが役立つと思います

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

    <Button
        android:id="@+id/btnAdd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="Add Item" />

    <TableLayout
        android:id="@+id/lvLocation"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/btnBack"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/btnAdd" >

    </TableLayout>

    <Button
        android:id="@+id/btnBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:text="Back" />

</RelativeLayout>
于 2012-10-04T09:59:03.210 に答える
0

それ以外の :

ListView listView = (ListView) findViewById (R.id.lvlocation);

使用するだけです:

 ListView listView  = getListView();
于 2012-10-04T10:23:41.320 に答える