常に最大 30 個の名前を含む Web サービスから名前をロードしています。この名前はリスト アクティビティで表示できますが、サーバーに 30 を超える名前がある場合は、リスト アクティビティの下部に [次へ] ボタンと [前へ] ボタンが必要です。
これを listactivity で解決することは可能ですか、それともカスタム アクティビティを作成する必要がありますか?
ありがとう
常に最大 30 個の名前を含む Web サービスから名前をロードしています。この名前はリスト アクティビティで表示できますが、サーバーに 30 を超える名前がある場合は、リスト アクティビティの下部に [次へ] ボタンと [前へ] ボタンが必要です。
これを listactivity で解決することは可能ですか、それともカスタム アクティビティを作成する必要がありますか?
ありがとう
このようなレイアウトファイルを試してください...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.9" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1" >
<!-- Put buttons here -->
</LinearLayout>
</LinearLayout>
ListView
あなたがのリソースIDを持っている限り、@android:id/list
それListActivity
は自動的に見つかります。にリソースIDを割り当て、Buttons
を使用findViewById(...)
した後にを使用setContentView(...)
して、への参照を取得する必要がありますButtons
。