我该怎么做才能使TextView(地址+邮政编码)可点击&打开谷歌地图?

时间:2011-01-19 11:10:32

标签: android textview

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent"> 

<TextView 
android:id="@+id/address" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:autoLink="map" /> 

<TextView 
android:id="@+id/postcode" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:autoLink="map" /> 

<ListView 
android:id="@android:id/list" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent"/> 

</LinearLayout> 

1 个答案:

答案 0 :(得分:-1)

非常简单......

只需将onCickListener添加到TextView上即可。 在函数中不要直接调用map活动。 但是instaed首先改变了textview的颜色。 然后使用Handler调用postDelayed方法调用Map Activity以获得单击效果

检查下面的代码

Handler mHandler = new Handler();
final TextView myTextView = (TextView)findViewById(R.id.TextView01);
myTextView.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {


        // TODO Auto-generated method stub

                           myTextView.setTextColor(Color.red);
                           mHandler.postDelayed(new Runnable(){

                                public void run()
                                {
                                   // Here call your map activity
                                }  
                             },200L); 
        }
    });

希望这会有所帮助:)