選択した画像にユーザー入力を追加しようとしています。これまでのところ、画像を選択でき、エミュレータのキーパッドが表示されますが、画像にテキストが追加されません。以下はコードです。誰でも私がそれを理解するのを手伝ってもらえますか? ありがとう!
public class FullImageActivity extends Activity implements OnClickListener {
private EditText textArea;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.full_image);
// get intent data
Intent i = getIntent();
// Selected image id
int position = i.getExtras().getInt("id");
ImageAdapter imageAdapter = new ImageAdapter(this);
ImageView imageView = (ImageView) findViewById(R.id.full_image_view);
imageView.setImageResource(imageAdapter.mThumbIds[position]);
textArea = (EditText)findViewById(R.id.ascii_text);
}
@Override
public void onClick(View arg0) {
textArea.setText("");
textArea.getText();
} }
full_image.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView android:id="@+id/full_image_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<EditText
android:id="@+id/ascii_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:gravity="center|left"
android:hint=""
android:inputType="textMultiLine"
android:lines="10"
android:maxLines="10"
android:minLines="10"
android:singleLine="false"
android:textColor="#ffffff"
android:typeface="monospace" />
</LinearLayout>