如何在单选按钮的中心绘制图像

时间:2012-05-06 04:41:57

标签: android

我正在查看http://bakhtiyor.com/2009/10/iphonish-tabs/中发布的示例,实际上他们已将Radio按钮替换为Tabview。

但问题是,我无法将图像设置为中心。它始终与左对齐。

这是截图。我希望我的视图应该看起来像这样,但我希望图像在中心。 enter image description here

这就是我的布局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">

    <FrameLayout android:id="@android:id/tabcontent"
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content"
      android:layout_weight="1" 
      android:padding="20dip"/>

    <RadioGroup android:layout_width="fill_parent"
      android:layout_height="wrap_content" 
      android:orientation="horizontal"
      android:checkedButton="@+id/allcontacts"
      android:gravity="center"
      android:id="@+id/contactgroup">


      <RadioButton android:id="@+id/allcontacts" 
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical"
      android:background="@drawable/button_radio"/>


      <RadioButton
          android:id="@+id/categories"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_weight="1"
          android:background="@drawable/button_radio"
          android:orientation="vertical"
          android:layout_gravity="center|right"/>

      <RadioButton android:id="@+id/favourites" 
   android:layout_width="fill_parent"
          android:layout_height="wrap_content"

    android:gravity="center"
    android:orientation="vertical"
      android:layout_weight="1" 
      android:background="@drawable/button_radio"/>

    </RadioGroup>

    <TabWidget android:id="@android:id/tabs"
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content"
      android:layout_weight="0" android:visibility="gone" />
  </LinearLayout>
</TabHost>

请指教我

使用“默认”选项卡小部件后更新的图像 enter image description here

是否可以在默认的tabview中自定义上面的单选按钮。?

2 个答案:

答案 0 :(得分:3)

不能使图像居中,但你可以让它看起来那样...你可以修改图像,使左边有空白,并立即切断图像的右边。

修改

我不知道你是否见过这些,但是你让我好奇所以我去寻找并发现了一些可能有助于实现底部标签最终目标的链接:

Niko's Blog

SO Question Answer

Another SO Question Answer

祝你好运!

修改2

好的,找到了。您必须从RadioButton扩展一个新类并覆盖onDraw(),然后创建一个需要放入res / values的attrs.xml文件,以便代码可以在平台定义时获得 属性。

Specific code here

答案 1 :(得分:0)

你可以定义自己的ImageButton,它扩展了CompoundButton。请参阅RadioButtonCompoundButton的来源,了解如何操作。