在外部连接的设备上的Android Studio中显示图像

时间:2018-10-13 15:35:52

标签: android-studio android-imageview

我是Android学习的新手。我正在尝试制作一个customAdapter,它将在每行中显示一个图像和一个文本。在我的Main_Activity中,我有以下代码:`

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    String [] foods= {"Biryani","Matar Qeema","Chicken"};
    ListAdapter faizisAdapter= new CustomAdapter(this,foods);
    ListView faizisListView= (ListView)findViewById(R.id.faizisListView);
    faizisListView.setAdapter(faizisAdapter);
    faizisListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                String food= String.valueOf(parent.getItemAtPosition(position));
                Toast.makeText(MainActivity.this,food,Toast.LENGTH_LONG).show();
        }
    });
}

}

这是我的CustomAdapter

class CustomAdapter extends ArrayAdapter<String>{
    CustomAdapter(Context context, String []foods)
    {
        super(context,R.layout.custom_row, foods);
    }

public View getView(int position, @Nullable View convertView, @NonNull 
ViewGroup parent) {
    LayoutInflater faisizInflater = LayoutInflater.from(getContext());
    View faizisView = faisizInflater.inflate(R.layout.custom_row, parent, 
false);
    String food = getItem(position);

    TextView _foodsDisplay = (TextView) 
faizisView.findViewById(R.id._foodDisplay);
    ImageView _imageDisplay = (ImageView) 
faizisView.findViewById(R.id._imageDisplay);

    _imageDisplay.setImageResource(R.drawable.zaheer8423);
    _foodsDisplay.setText(food);
    return faizisView;
    }
}

我的Main_Activity_XML_FILE是:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ListView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/faizisListView"
    >
</ListView>

XML_FILE_FOR_customAdapter

 <?xml version="1.0" encoding="utf-8"?>
  <android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
    android:id="@+id/_imageDisplay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/zaheer8423"
    />
<TextView
    android:id="@+id/_foodDisplay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

</android.support.constraint.ConstraintLayout>

我已将图像文件保存在app/src/main/res/drawable/zaheer8423.jpg中。我已将android设备与android studio外部连接。当我运行该应用程序时,它会打开,然后突然关闭。

我已经看到了使用位图的方法,但是由于对它们的了解很少,所以我无法有效地使用它们。

请在这里帮助我。

1 个答案:

答案 0 :(得分:0)

看起来您的图片大小很大,您可能需要按比例缩小图片。

      // Decode with inSampleSize
        BitmapFactory.Options option = new BitmapFactory.Options();
        option.inSampleSize = scale;
        //You need to calculate appropriate sample size 
        Bitmap bitmap =  



BitmapFactory.decodeResource(getContext().getResources(),R.drawable.zaheer8423,option);
imageDisplay.setImageBitmap(bitmap);

作为适配器,您需要管理位图缓​​存并创建位图应在辅助线程(非主线程,即UI线程)中完成,以避免ANR。