gpt4 book ai didi

android - GridView : Using RecyclerView or Simply TextView with clickable words

转载 作者:搜寻专家 更新时间:2023-11-01 08:40:01 25 4
gpt4 key购买 nike

那么,有人知道如何创建以下网格吗?我需要为每个单词设置可点击事件:

pic 1

如果四个词排不成一行,则应在一行中显示三个:

enter image description here

如果超过一行 n 个单词,则应在一行中显示 n 个单词。有没有人知道如何实现这个?

最佳答案

您可以使用 SpannableString 和 ClickableSpan。例如,此 Activity 使用您的文本创建 TextView 并管理对每个单词的点击:

public class MainActivity extends AppCompatActivity {

Activity activity;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
activity = this;
TextView textView = (TextView) findViewById(R.id.textView);

String text = "up down Antidisestablishment over took dropped lighten with from throught fell on up down Antidisestablishment over took dropped lighten with from throught fell on";

String[] textArray = text.split(" ");

SpannableString ss = new SpannableString(text);

int start = 0;
int end = 0;

for(final String item : textArray){

end = start + item.length();
ClickableSpan clickableSpan = new ClickableSpan() {

@Override
public void onClick(View textView) {
Toast.makeText(activity, "Say " + item+ "!", Toast.LENGTH_SHORT).show();
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setUnderlineText(false);
}
};
ss.setSpan(clickableSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
start += item.length()+1;
}
textView.setText(ss);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setHighlightColor(Color.TRANSPARENT);

}
}

这里是 activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
android:padding="5dp">

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
android:textColor="#000000"
android:textColorLink="#000000"/>

</LinearLayout>

如果你点击任何一个词,你会弹出这个词

编辑:使用库 android-justifiedtextview 证明文本的合理性

但不是gradle的库,有不支持SpannableString的旧版本。我建议将类 JustifyTextView 从 git 复制到您的项目中。然后你可以在你的 .xml 中使用这个 View ,比如:

<com.yourdomain.yourproject.JustifyTextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
android:textColor="#000000"
android:textColorLink="#000000"/>

这是我从这个库中得到的: justified text

您还可以修改库以保持最后一行不合理。文本中的每个词仍然可以点击。

关于android - GridView : Using RecyclerView or Simply TextView with clickable words,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33651539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com