如何查看所有已安装的应用程序。

huangapple go评论161阅读模式
英文:

How to GridView All Installed Apps

问题

如何在 GridView 中显示所有已安装的应用程序;

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:paddingStart="10dp"
    android:background="@drawable/background"
    android:paddingEnd="10dp">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="已安装的应用程序"
        android:textStyle="bold"
        android:textSize="18sp"
        android:paddingTop="18dp"
        android:paddingBottom="6dp"
        android:gravity="center"/>

</LinearLayout>

我想在 GridView 中显示这些应用程序。谢谢!

英文:

How to GridView the All Installed Apps ;

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:paddingStart="10dp"
    android:background="@drawable/background"
    android:paddingEnd="10dp">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Installed Apps"
        android:textStyle="bold"
        android:textSize="18sp"
        android:paddingTop="18dp"
        android:paddingBottom="6dp"
        android:gravity="center"/>


</LinearLayout>

i want to Display the apps in GridView
Thankyou!

答案1

得分: 2

在你的Xml文件中添加以下内容:

<GridView
    android:id="@+id/grid"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:numColumns="6"
    android:verticalSpacing="20dip" />
英文:

Add this in your Xml file ;

    &lt;GridView
        android:id=&quot;@+id/grid&quot;
        android:layout_width=&quot;fill_parent&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:numColumns=&quot;6&quot;
        android:verticalSpacing=&quot;20dip&quot; /&gt;

huangapple
  • 本文由 发表于 2023年7月11日 13:54:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/76659021.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定