简体   繁体   中英

How to set text color as link?

I have textview which I want to change the color when I focus or cliclked it like a link text in web I have try to follow this but it still doesn't work

please help, thanks

this is my java code

public class TextColorActivity extends Activity {
/** Called when the activity is first created. */
 ColorStateList cl = null;
private TextView title;
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    title = (TextView)findViewById(R.id.hello); 
    try {
        Log.d("test","try");        
       XmlResourceParser xpp = getResources().getXml(R.drawable.selector_txt);
       cl = ColorStateList.createFromXml(getResources(), xpp);
    } catch (Exception e) {}
    title.setTextColor(cl);
    title.setFocusable(true);
    title.setClickable(true);
    title.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {

                  Log.d("test","click");               

        }
    });
}

this is my selector_txt.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:color="@color/Darkgoldenrod"/>
<item android:state_pressed="true" android:state_enabled="false"  
android:color="@color/Darkgreen" />
<item android:state_enabled="false" android:color="@color/Red" />
<item android:color="@color/blue"/>

and this is my main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
    android:id="@+id/hello" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" 
    android:textSize="30dp"
    android:textStyle="bold"
    android:duplicateParentState="true"/>

You can also set your color in the xml if you want. Just create a color folder in your res folder and move the xml file there then you can set it via android:textColor="@color/selector_txt"

Regards the problem you're having. Android will always use the first match in a selector. If a TextView is pressed it is also focused. So add android:pressed="false" to your first item or move the line after the pressed status line.

That's the full xml:

 <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_enabled="false" android:color="@color/Red" /> <item android:state_pressed="true" android:color="@color/Darkgreen" /> <item android:state_focused="true" android:color="@color/Darkgoldenrod"/> <item android:color="@color/blue"/> </selector> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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