0

メインアクティビティから文字列を受け取るアクティビティに次のコードがあります。

String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
 TextView textView = new TextView(this);
 textView.setTextSize(20);
 textView.setText(message);
// Set the text view as the activity layout
 setContentView(textView);

の下に画像を追加したいTextView

<?xml version="1.0" encoding="utf-8"?>
<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" >

      <TextView  android:layout_alignParentLeft="true"
            android:text="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

     <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/serious" />    
</LinearLayout>

行を使用するsetContentViewと、TextViewが画面全体を占有します。行がない場合、画像は表示されますが、文字列は " false" と表示されます。何か案が?

4

2 に答える 2

0

電話

setContentView(R.layout.yourLayout);

その後

String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
TextView textView = (TextView)findViewById(R.id.textView); 
textView.setTextSize(20);
textView.setText(message);

そしてそれはうまくいくでしょう。

于 2013-07-05T10:54:13.953 に答える