当前位置: 代码迷 >> Android >> 为啥不显示按钮
  详细解决方案

为啥不显示按钮

热度:56   发布时间:2016-04-28 02:08:54.0
为什么不显示按钮

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />
<Button
android:id="@+id/widget40_button_OK" 
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
android:text="OK"
></Button>

TextView里的正常显示  但是button里的看不到啊! 怎么回事儿!
------解决思路----------------------
父布局是什么啊?
是不是你的textview横满,把button挡住了textview的width也wrap_content.
  相关解决方案