gpt4 book ai didi

Android Tab 图标图像全尺寸

转载 作者:行者123 更新时间:2023-11-30 04:35:00 24 4
gpt4 key购买 nike

我有一个带有 4 个选项卡的简单 tabController,但我希望图标图像占据整个选项卡。我还想要图标图像顶部选项卡的文本。我只需要一些提示就可以朝着正确的方向前进。

我无法发布我的标签的图片(信誉点数不足)。但基本上我需要摆脱标签图标周围的所有填充。

我的图标是png文件。我的 tabControllerView 正在扩展 TabActivity,我正在使用 tab_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
</TabHost>

对于每个选项卡,我在我的 tabControllerView 的 onCreate 中执行此操作:

spec = tabHost.newTabSpec("home").setIndicator("Home", 
res.getDrawable(R.drawable.ic_tab_home)).setContent(intent);
tabHost.addTab(spec);

最佳答案

你应该能够用这样的东西来做到这一点:

        for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++){
tabHost.getTabWidget().getChildAt(i).setPadding(0,0,0,0);
}

关于Android Tab 图标图像全尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7005403/

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