1

我需要在主布局活动上膨胀这个布局 15 次(按 3 行 5 列排列),并为每个按钮实例设置 OnTouchListener padButton,这是最好的方法吗?我尝试膨胀布局但不知道将侦听器设置为分隔...

膨胀drumpad.xml的布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/padLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/pad"
    android:orientation="vertical"
    android:padding="3dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|clip_horizontal|top"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/padButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/titles2" />

        <Button
            android:id="@+id/padSelect"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="15dp"
            android:layout_height="wrap_content" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="21dp" >

        <Button
            android:id="@+id/padName"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="2dp"
            android:background="#0f0f0f"
            android:padding="2dp"
            android:text="@string/pad"
            android:textColor="#dfdfdf"
            android:textSize="10sp" />

    </LinearLayout>

</LinearLayout>

主布局(容器)activity_drum.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/DrumLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#999"
    android:gravity="center"
    android:orientation="vertical"
    tools:context=".Drum" >

</LinearLayout>
4

1 回答 1

1

我不确定您是否可以拥有多个具有相同 ID 的按钮。但是,您可以获取根视图,将其转换为ViewGroup. 根据需要使用getChildCount()andgetChildAt()和递归。像这样:

//we start from the root view
ViewGroup rootViewGroup = findViewById(R.id.rootLinearLayout);

for (int i = 0; i < this.getChildCount(); i++) {
    View childView = this.getChildAt(i);

    //is it a button?
    if (childView instanceof Button) {
        Button button = (Button) childView;
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //insert here the code
            }
        });
    }

    if (childView instanceof ViewGroup) {
        //iterate throught childView children
    }
}

好的,您不能毫无痛苦地使用此代码并将其投入使用。这只是一个起点。但...

我认为您需要重新考虑您的方法并尝试开发自己的自定义视图,我会使用复合视图,请看这里:

http://developer.android.com/guide/topics/ui/custom-components.html#compound

你需要一点练习,但我认为这对你的目的很有帮助。

编辑

也许你可以在这里找到一些有用的信息:

将一组按钮添加到 Android 应用程序中的 GridView

和这里:

http://developer.android.com/guide/tutorials/views/hello-gridview.html

在这里(鼓机):

http://mindtherobot.com/blog/420/android-beatz-making-a-drum-machine-app/

于 2013-03-19T19:46:35.883 回答