StickyGridHeaders标题行的宽度

时间:2014-06-02 09:23:17

标签: android

如下图所示:

Where the C letter is is not wrapping the whole width

当我滚动到该字母时,标题上的绿线填充空格(如B字母)但不填写时只填写字母(如C字母)。

我希望C字母也填满整个空间。

以下是我使用的代码Tonic Artos'例如:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical"
    >
<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
                 android:id="@+id/itemGridHeader"
                 android:layout_width="0dip"
                 android:layout_height="match_parent"
                 android:layout_weight="1"
                 android:gravity="left"
                 android:paddingBottom="4dp"
                 android:paddingLeft="4dp"
                 android:paddingTop="4dp"
                 android:textColor="@color/myColor"
                 android:textSize="16.5sp"
                 android:textStyle="bold"
                 android:textAllCaps="true"
                 >
         </TextView>
</LinearLayout>

<FrameLayout
             android:layout_width="match_parent"
             android:layout_height="1dp"
             android:background="@color/myColor" >
 </FrameLayout>

以下是代码的链接: https://github.com/TonicArtos/StickyGridHeaders/blob/master/Example/res/layout/header.xml

1 个答案:

答案 0 :(得分:3)

也许这个问题有点陈旧,但我今天也在努力解决同样的问题而且我想分享我的所作所为。

Screenshot with the same problem

发生的事情是我正在使用gradle将依赖项添加到此库中,我知道在以前的版本中没有gradle它在某个时候正在工作,所以我删除了依赖项并添加了我之间的jar我的文件然后修复了。

stickygridheaders.jar file