gpt4 book ai didi

android - 如何在 Android 中的图像按钮下添加文本?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:37 25 4
gpt4 key购买 nike

我想在图像按钮下添加文本,这些文本也是可点击的,并且将被重定向到与图像按钮相同的 Activity 。基本上它就像任何安卓手机中的应用程序列表,例如enter image description here

最佳答案

如果您有 ImageButton在 XML 中声明,然后将其放入 LinearLayout其中还包含一个 TextView并设置 onClickListenerLinearLayout 上.结构就像

<LinearLayout 
... > <!-- This is the LinearLayout for the xml document -->

<!-- Some other layout code here if you please -->
<LinearLayout
android:id="@+id/linLayout"
... >
<ImageButton
... />
<TextView
... />
</LinearLayout>
</LinearLayout>

然后在你的java中:

LinearLayout layout = (LinearLayout)findViewById(R.id.linLayout);
layout.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

}
});

如果您要添加每个 ImageButton通过java代码动态地,那么它仍然会保持相同的结构。如果我需要添加任何内容,请告诉我。

关于android - 如何在 Android 中的图像按钮下添加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8868391/

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