我想在 HoneyComb Tablet 的底部设计 Tab Bar。那么,是否有任何特定的方式或栏可用于设计底部标签栏的布局?
问问题
852 次
2 回答
1
只需在 Android 中使用默认 TabHosts 并添加属性
android:layout_alignParentBottom="true"
对于 TabWidget
有关更多信息,请参见下面的链接
于 2012-06-27T07:39:23.577 回答
0
绘制 iphone 类型的标签栏
我通常在 LinearLayout Horizontal 中使用 TextView 和 Background Gardients。
TextView 具有可绘制的顶部属性,可以帮助包含图标。
我不推荐默认选项卡布局
public void setFooterStyle(Context c,TextView profile,TextView parking,TextView taxi,TextView history,TextView help,int flag)
{
if(flag==0)
{
profile.setBackgroundResource(R.drawable.grey_background_gradient);
profile.setTextColor(Color.rgb(255, 255, 255));
profile.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.profile1, 0, 0);
}
else if(flag==1)
{
parking.setBackgroundResource(R.drawable.grey_background_gradient);
parking.setTextColor(Color.rgb(255, 255, 255));
}
else if(flag==2)
{
taxi.setBackgroundResource(R.drawable.grey_background_gradient);
taxi.setTextColor(Color.rgb(255, 255, 255));
taxi.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.taxi_on, 0, 0);
}
else if(flag==3)
{
history.setBackgroundResource(R.drawable.grey_background_gradient);
history.setTextColor(Color.rgb(255, 255, 255));
history.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.history_on, 0, 0);
}
在你的活动中
Global.getInstance().setFooterStyle(getApplicationContext(),(TextView) findViewById(R.id.btnprofile),(TextView)findViewById(R.id.btnparking),(TextView)findViewById(R.id.btntaxi),(TextView) findViewById(R.id.btnhistory),(TextView) findViewById(R.id.btnhelp), 4);
于 2012-06-27T07:39:24.530 回答