0

单击文本视图不起作用

我的xml是

<TextView
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginLeft="5dp"
android:layout_weight="3"
android:gravity="center" 
android:textColor="@color/white"
android:text="click to download sevenstepstocollege"
android:textSize="15dp"
android:onClick="downloadLink"
android:clickable="true">
</TextView>

我的活动代码是

public void downloadLink(View v)
{
//String requestId = PurchasingManager.initiatePurchaseRequest(skuKye);
//String requestId=PurchasingManager.initiateItemDataRequest("DeveloperSKU-1234");
skuSet.add(skuKye);
final String requestId = PurchasingManager.initiateItemDataRequest(skuSet);
}  

但它不起作用。我无法单击该链接。请指导我

4

5 回答 5

2

好吧,我使用以下代码使 TextView 可点击。

首先,在您的 activity.xml 中添加它,以使 TextView 可点击:

<TextView
    android:id=android:id="@+id/button2" <!-- id to get this TextView -->
    (...)
    android:onClick="onClick"  <!-- Add the function onClick() -->
    android:clickable="true"   <!-- Set the boolean clickable to true -->
/>

然后,在 MainActivity.java 中,添加:

private TextView textview;    

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);    
    setContentView(R.layout.activity_main);  

    // Get the TextView by id
    textview = (TextView) findViewById(R.id.button2);

    textview.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
              // TODO when clicked on your link(TextView)
        }
    });
}


正如我现在看到的,您正在尝试从 TextView 中创建一个可点击的链接,而不仅仅是能够点击 TextView,我将在下面提供一个链接,指向 Stack Overflow 中解决的类似问题,您可能会觉得有帮助。


android开发者对TextView的引用:
https ://developer.android.com/reference/android/widget/TextView.html

Stack Overflow 中关于如何在可点击中创建链接的类似问题可能会有所帮助:
如何使 TextView 中的链接可点击?

于 2014-07-06T14:07:33.260 回答
1

你可以这样使用

<TextView
                            android:id="@+id/topPaid"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:autoLink="all"
                            android:clickable="true"                           
                            android:text="@string/topPaid"
                            android:textColor="#000000"
                            android:textColorLink="#33CC33" />

和在活动

TextView topPaid = (TextView) findViewById(R.id.topPaid);

Linkify.addLinks(topPaid, Linkify.ALL);

topPaid.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {

//write ur logic
}
}
于 2012-11-21T06:34:22.100 回答
0

在您的 XML 中如下所示:

 <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:onClick="onTextViewPressed"
   />

在您附加的活动中 public void onTextViewPressed(View view) { ... }

于 2013-10-08T16:23:58.407 回答
0
TextView textview = (TextView) findViewById(R.id.text);
textview.setText(Html.fromHtml("<b>Text:</b>  Text with a " + "<a href=\"http://www.google.com\">link</a> " + "Created in the Java source code using HTML."));
于 2012-11-21T06:45:59.203 回答
0

XML 代码

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

JAVA代码

    TextView textView = (TextView) findViewById(R.id.textView1);
    textView.setText(Html.fromHtml("<a href=\"http://www.google.com\">google</a> "));
    textView.setMovementMethod(LinkMovementMethod.getInstance());
于 2012-11-21T06:54:57.203 回答