我有一个问题,我在我的Android应用程序中实现了一个标签,但标签主机没有显示标题
我在xml中使用以下代码
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="63dip"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
请告诉我们如何在android
中显示标题和设置大小到标签主机答案 0 :(得分:0)
我建议您查看here.
基本上,您创建了一个自定义布局(这是完全来自该链接BTW):
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#A8A8A8" android:centerColor="#7F7F7F"
android:endColor="#696969" android:angle="-90" />
</shape>
然后你膨胀它。由于我不想直接剽窃,只需查看链接即可。