1

是否可以发送微调器的链接?我四处搜索,大多数情况下它们是数据输入,而不是如果您选择了某个微调器数组,那么它会将您链接到某个地方。有可能做到吗?

同样在我的图形布局中,它总是说项目 1,然后是下面的子项目 1。有没有办法改变它?

因为android:text=""适用于 textView 我认为它会在这里工作但我猜我错了

PS 我正在尝试制作微调器,以便将其选中并链接到 webView 小部件。仍在思考如何做到这一点,但我想我什至还不能制作一个微调器来链接。

4

1 回答 1

1

您可以使用以下方法链接微调器的文本

http://developer.android.com/reference/android/text/util/Linkify.html

    TextView text=(TextView)findViewById(R.id.text1);   
    text.setText("Its not just hello world but 
                  the world is full of links....small links ,
                  big links...as... www.google.com ");
    Linkify.addLinks(text, Linkify.ALL);

现在,文本中的文本 www.google.com 将被链接。

或者你可以使用

    spinner.setOnItemSelectedListener(new OnItemSelectedListener() {

  @Override
  public void onItemSelected(AdapterView<?> arg0, View arg1,
      int arg2, long arg3) {
  startActivity(new Intent(Intent.ACTION_VIEW,
         Uri.parse("http://www.google.com")));
 }

  @Override
  public void onNothingSelected(AdapterView<?> arg0) {}

 });

在微调器项目选择的 onItemselected 内

于 2013-10-22T06:23:31.277 回答