我对android编程很陌生。我正在开发我的第一个应用程序。
我试图显示保存在 res/drawable-mdpi 中的图像在来自先前活动中的列表视图的一小段文本下方。例如,有一个带有电视节目名称的列表视图,单击时将显示电视节目的名称,然后是该电视节目的图像。我尝试了许多不同的东西,但这是我正在使用的基本代码。文本加载它,但我想要下面的图像。
package com.example.listviews;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
public class LocationActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the message from the intent
Intent intent = getIntent();
String message = intent.getStringExtra("valueLoc");
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
// ImageView image = (ImageView) findViewById(R.id.menu_settings);
setContentView(textView);
}
}