繁体   English   中英

Android onClick在线性布局上

[英]Android onClick on Linear Layout

我有以下代码:

<?xml version="1.0" encoding="utf-8"?>    
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_item"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:orientation="horizontal"
    android:clickable="true"
    android:onClick="openGithubUrl">

    <ImageView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@mipmap/github_icon"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:id="@+id/github_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
        <TextView
            android:id="@+id/github_url"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>


</LinearLayout>

我想在LinearLayout(@ + id / list-item)上添加onCLick侦听器。 这可能吗? 在触发onClick之后,我想获取子Textview @ + id / github_url的内容。

是的,您可以将onClickListener设置为线性布局,在您的用例中,在活动中为listItem.setOnClickListener()

LinearLayout listItem;
TextView tvGithubUrl;


tvGithubUrl = (TextView) findViewById(R.id.github_url)
listItem = (LinearLayout) findViewById(R.id.list_item)

listItem.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            //Get the github_url text here
        tvGithubUrl.getText().toString();
        }
    });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM