Android ImageView高度根据图片比例自适应

2017-04-16 21:01:12
设置adjustViewBounds  // 是否保持宽高比


<ImageView
    android:id="@+id/iv_test"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"
    />


  • 2018-01-26 01:05:22

    Android在thread中Toast不能显示问题解决

    一般如果不是在主线程中又开启了新线程的话,一般都会碰到这个问题。 原因是在创建新线程的时候默认情况下不会去创建新的MessageQueue。