android – Widget中的ListView GridView
作者:互联网
我需要为2部分创建一个小部件(用于主屏幕):第一个 – 顶部的ListView,它必须填充50%的小部件,第二个部分是GridView,它必须在第一个部分之下,同样必须占据50%的位置.
我试着找一些教程,但不能这样,如果有人这样做,请帮助我.
解决方法:
你在谈论一个简单的布局吗? Android中的“widget”一词有多种含义.如果你的意思是布局,你可以使用LinearLayout的android:layout_weight属性为每个分配50%的空间.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" />
<ListView
android:id="@+id/my_listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
<GridView
android:id="@+id/my_gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
标签:android,android-listview,android-gridview,android-appwidget 来源: https://codeday.me/bug/20190709/1414714.html