我正在开发一个显示默认Android按钮的应用程序:
截图
为什么我的应用中显示的那个小蓝标(我不知道正确的名字)?
这就是我将其显示的方式:我按住按钮,然后在文本上从右向左滑动,直到标记出现。
通常我在选择文本时会在EditText中获得该标记 - 但这是一个按钮而没有EditText!
我的按钮XML:
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Sign in"
android:id="@+id/loginButton"
android:layout_below="@+id/mainLin"
android:layout_centerHorizontal="true"
android:backgroundTint="#2196F3"
android:textColor="#333"
android:textAllCaps="false"
android:layout_gravity="right"
android:enabled="true"
android:layout_marginTop="5dp" />
答案 0 :(得分:0)
尝试使用XML:
android:textIsSelectable="false"
android:longClickable="false"