gpt4 book ai didi

android - 如何创建像 android 联系人收藏夹一样的布局

转载 作者:行者123 更新时间:2023-11-29 00:31:32 26 4
gpt4 key购买 nike

如何创建像我附加的(Android ICS 联系人最喜欢的布局)图像一样的布局

Layout with image and overlay name

我正在使用 GridView 为照片网格创建布局。那是完美的工作。但是

我如何创建覆盖布局,如带有名称或图像的黑色透明??任何人指导我这样做

提前致谢

最佳答案

试试这个:(注意:这是将在 Adapter 中设置的 GridView 的自定义 XML 布局)

<FrameLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:gravity="center" >

<ImageView
android:id="@+id/imgProfilePicture"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/ic_contact_picture" >
</ImageView>

<TextView
android:id="@+id/txtUserName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:background="#50000000"
android:gravity="center"
android:text="User Name"
android:textColor="#ffffff"
android:textSize="11sp" >
</TextView>
</FrameLayout>

它看起来是这样的:

enter image description here

这是来 self 的一个应用程序的原样尝试使用 android:layout_widthandroid:layout_height 来设置你自己的大小。另外,修改这个 android:background="#50000000" 属性,让它看起来随心所欲。其中的 50 是设置透明度的 alpha

关于android - 如何创建像 android 联系人收藏夹一样的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15382538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com