0

アクティビティでリストビューとスライドドロワーを使用しています。私の意図は、slidedrawer を開いて、リスト項目のクリック時にコンテンツを表示することです。選択したアイテムによってスライドドロワーの内容が変わります。

UI レイアウトは次のように表示されます。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ListView
    android:id="@+id/presentation_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

<SlidingDrawer
    android:id="@+id/slidingDrawer1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:content="@+id/content"
    android:handle="@+id/handle"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/handle"
        android:layout_width="40dp"
        android:layout_height="fill_parent"
        android:background="@android:color/darker_gray" />

    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Presentation&apos;s Images.. Please Flip"
            android:textColor="@android:color/black"
            android:textStyle="bold" />
        <ImageView
            android:id="@+id/content_imageview"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="@android:color/black" 
            android:layout_below="@id/presentation_list"
            />
    </LinearLayout>
</SlidingDrawer>

リストビューのスライダーをクリックすると、スライドドロワーのイメージビューをクリックすると、リストビューもクリックされます。コントロールはリストビュー項目のクリック メソッドに到達し、画像が変更されます

誰でも問題を解決するのを手伝ってくれますか?

4

1 に答える 1

5

レイアウトにandroid:clickable属性を追加し、次のように設定します。contenttrue

<LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:clickable="true" >

残念ながら、なぜそれが起こるのかを説明することはできません。

于 2012-07-10T12:19:03.633 に答える