如何在应用程序的 TextView 中启用复制和粘贴选项 | Android 工作室
How can i enable copy and Paste option in TextView in an App | Android Studio
所以我想在我的静态 android 应用程序中启用 copy
和 paste
选项,我尝试了每一种方法来启用复制粘贴选项,但每次添加代码时,它都会给出我的整个代码中的错误和警告。谁能帮忙。谁能告诉我或编辑这些代码以在我的 android 应用程序
中启用复制和粘贴选项
Activity.xml 文件
<RelativeLayout 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"
tools:context="com.sample.youtuber.health.SecondActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="19dp"
android:layout_marginRight="19dp"
android:layout_marginStart="19dp"
android:layout_marginTop="18dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="200dp"
tools:ignore="ContentDescription"
android:src="@drawable/browse"
android:scaleType="fitXY"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:id="@+id/textview"
android:text="@string/How_To_Browse_Deep_Web"
android:textAlignment="center"
android:layout_gravity="center"
/>
</LinearLayout>
</ScrollView>
</RelativeLayout>
Activity.java 文件
package com.sample.youtuber.health;
import android.annotation.TargetApi;
import android.os.Build;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.text.method.LinkMovementMethod;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class SecondActivity extends ActionBarActivity {
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
TextView text = (TextView) findViewById(R.id.textview);
text.setMovementMethod(LinkMovementMethod.getInstance());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_second, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
将此行添加到您的 Textview
android:textIsSelectable="true"
将此行添加到 textview :
android:longClickable="true"
android:textIsSelectable="true"
在您的 Java class 中写入此行以编程方式设置它。
myTextView.setTextIsSelectable(true);
所以我想在我的静态 android 应用程序中启用 copy
和 paste
选项,我尝试了每一种方法来启用复制粘贴选项,但每次添加代码时,它都会给出我的整个代码中的错误和警告。谁能帮忙。谁能告诉我或编辑这些代码以在我的 android 应用程序
Activity.xml 文件
<RelativeLayout 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"
tools:context="com.sample.youtuber.health.SecondActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="19dp"
android:layout_marginRight="19dp"
android:layout_marginStart="19dp"
android:layout_marginTop="18dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="200dp"
tools:ignore="ContentDescription"
android:src="@drawable/browse"
android:scaleType="fitXY"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:id="@+id/textview"
android:text="@string/How_To_Browse_Deep_Web"
android:textAlignment="center"
android:layout_gravity="center"
/>
</LinearLayout>
</ScrollView>
</RelativeLayout>
Activity.java 文件
package com.sample.youtuber.health;
import android.annotation.TargetApi;
import android.os.Build;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.text.method.LinkMovementMethod;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class SecondActivity extends ActionBarActivity {
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
TextView text = (TextView) findViewById(R.id.textview);
text.setMovementMethod(LinkMovementMethod.getInstance());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_second, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
将此行添加到您的 Textview
android:textIsSelectable="true"
将此行添加到 textview :
android:longClickable="true"
android:textIsSelectable="true"
在您的 Java class 中写入此行以编程方式设置它。
myTextView.setTextIsSelectable(true);