Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用自定义 arrayadapter 创建一个列表视图..但问题出在平板电脑中,它显示列表项非常小..any1 可以帮助我,在此先感谢
尝试使列表视图的宽度固定。您可以在相应的布局 xml 文件中执行此操作。在那里你添加属性android:layout_width="200dp"
android:layout_width="200dp"
要解决此问题,请删除静态变量,即固定值。使用 fill_parent、match_parent 创建动态 xml。
谢谢...