毕加索图片未通过USB调试加载,但在仿真过程中工作正常

时间:2019-06-13 17:32:35

标签: debugging kotlin usb picasso drawerlayout

问题:使用“导航抽屉活动”时,毕加索会在仿真过程中加载图像,但在USB调试过程中不会加载图像……非常感谢您的帮助!

更新:答案中的解决方案!

这是我的手机的图像,没有显示该图像,并且模拟器运行正常。我将YouTube缩略图用作在线测试图像: https://imagizer.imageshack.com/img921/7876/4sd4ak.jpg

当我决定在手机上进行开发时,我在一个较大的项目中注意到了这一点,但是在寻找解决方案时,它能够将其隔离到一个新的Navigation Drawer Layout Activity中。

这就是我所知道的:

  • 我的所有SDK,AndroidStudio,GooglePixel 3XL Phone(IRL)已更新
  • 在Android Studio中无效/重新启动我的现金
  • 迁移到AnrdroidX时也会发生此问题
  • 所有Android手机在使用仿真器时都能正常运行,而不是物理Google Pixel 3XL上的USB调试
  • 更新:我可以通过USB在我的Samsung Galaxy 7上使用它!
  • “清空活动”等其他布局也可以正常工作,即使在同一项目中也可以

我在Android Studio中进行了新的导航抽屉布局活动,并添加了以下内容:

1)Build.gradle(Module:app)依赖项: 实施'com.squareup.picasso:picasso:2.5.2'

2)在我的Android清单中:uses-permission android:name =“ android.permission.INTERNET”

3)我的content_main的ImageView

4)在我的MainActivity的onCreate中: Picasso.with(this).load(“ http://img.youtube.com/vi/ek-5vIz_gDw/0.jpg”)。into(imageView)

// MainActivity without the additional override functions (no changes)

class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    val toolbar: Toolbar = findViewById(R.id.toolbar)
    setSupportActionBar(toolbar)

    val fab: FloatingActionButton = findViewById(R.id.fab)
    fab.setOnClickListener { view ->
        Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
            .setAction("Action", null).show()
    }
    val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
    val navView: NavigationView = findViewById(R.id.nav_view)
    val toggle = ActionBarDrawerToggle(
        this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close
    )
    drawerLayout.addDrawerListener(toggle)
    toggle.syncState()

    navView.setNavigationItemSelectedListener(this)

    Picasso.with(this).load("http://img.youtube.com/vi/ek-5vIz_gDw/0.jpg").into(imageView)

}

还有我的content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/app_bar_main"
    tools:context=".MainActivity">


<ImageView
        android:layout_width="0dp"
        android:layout_height="0dp" app:srcCompat="@mipmap/ic_launcher_round"
        android:id="@+id/imageView" app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:contentDescription="@string/description"/>

</androidx.constraintlayout.widget.ConstraintLayout>

我没有收到任何运行中的错误消息,只是图像没有加载到USB调试IRL中。

1 个答案:

答案 0 :(得分:0)

更新:所以我能够在我尝试过的所有其他物理电话上使用它。但是,要使其在Google Pixel 3XL上运行,我必须进行更改。不确定为什么会有什么不同,但确实可以!

我以前是这样做的(不仅不能工作我的物理Pixel 3),

    val imageLink = video.link
    Picasso.with(context).load("http://img.youtube.com/vi/$imageLink/0.jpg").into(imageView)

不知道为什么,但是这是可行的解决方案:

    val imageLink = "https://img.youtube.com/vi/${video.link}/0.jpg"
    Picasso.with(context).load(imageLink).into(imageView)

希望这对处于同一困境的任何人都有帮助!