gpt4 book ai didi

java - Android - 复选框不响应 FrameLayout 内的点击

转载 作者:行者123 更新时间:2023-12-02 11:21:44 25 4
gpt4 key购买 nike

我正在开发一个音乐播放器应用程序,我创建了一个 FrameLayout,它充当“卡片”,显示有关我尝试添加的每首歌曲的信息(专辑封面、标题、艺术家等)这张卡中的复选框,我计划对其进行自定义以创建赞成票和反对票按钮。但是,卡内的复选框不会响应单击。如果我在应用程序的主要 Activity (我正在绘制卡片的地方)中绘制一个复选框,它就可以正常工作。

这是卡片 View (“MusicCardView”)的 onDraw() 方法:

    protected void onDraw(Canvas canvas) {
super.onDraw(canvas);


//Draw the voting controls
try {

CheckBox upvoteButton = new CheckBox(getContext());
upvoteButton.setX(20);
upvoteButton.setTop(-60);
upvoteButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// Is the button now checked?
Log.d("MainActivity", "upvote clicked");
}
});
CheckBox downvoteButton = new CheckBox(getContext());
downvoteButton.setX(20);
downvoteButton.setTop(-150);
downvoteButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// Is the button now checked?
Log.d("MainActivity", "downvote clicked");
}
});

upvoteButton.draw(canvas);
downvoteButton.draw(canvas);

} catch (Exception e) {
Log.e("MusicCardView", "exception", e );
}

}

主要 Activity 的 xml(“PartyActivity”):

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_activity_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.musique.PartyActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/main_linear_view"
android:layout_marginBottom="56dp">
<com.musique.MusicCardView
android:layout_width="match_parent"
android:id="@+id/now_playing_view"
android:layout_height="80dp"
android:background="#ccc"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
app:exampleColor="#000000"
app:songTitle="Money"
app:artist="Pink Floyd"
app:album="The Dark Side of the Moon"
app:exampleDimension="18sp"
app:exampleDrawable="@drawable/darkside"
app:exampleString="example" />
<Space
android:layout_width="match_parent"
android:layout_height="80dp"
android:id="@+id/controller_space"/>

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/query"
android:layout_gravity="center"
android:layout_marginTop="20dp" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/searchBtn"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:text="Search"
android:background="#5eca99"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tvData"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:animateLayoutChanges="true"
android:id="@+id/main_scroll_view">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/scroll_child">

</LinearLayout>
</ScrollView>
</LinearLayout>



<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />


</android.support.constraint.ConstraintLayout>

以及在 PartyActivity 中绘制 MusicCardView 的示例

LayoutInflater vi = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
MusicCardView v = (MusicCardView) vi.inflate(R.layout.music_card_template, null);
v.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.MATCH_PARENT, 210));
LinearLayout linearLayout = findViewById(R.id.scroll_child);
v.setSongAttributes(song);
new RetrieveArtTask(v).execute(song);
Log.d("PartyActivity", "SongAttributes Set");
linearLayout.addView(v);

我看过this questionthis question ,但对发布的解决方案没有运气,并且非常感谢您提供的任何建议。

最佳答案

如果将控件直接绘制到 Canvas 上,它们基本上只是位图,您需要将它们添加到 View 层次结构( Activity/fragment 布局)中,以便它们接收触摸事件。

顺便说一句,在 onDraw 中实例化事物是一个很大的禁忌,尤其是 View 。

关于java - Android - 复选框不响应 FrameLayout 内的点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49870345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com