TextView由其父级(RelativeLayout / FrameLayout)

时间:2017-04-25 10:48:32

标签: android xml android-layout android-relativelayout android-framelayout

我正在开发某种可滚动的水平图表。我有一个RecyclerView.Adapter,其视图持有者有两个视图: 1.视图 - 将仅表示具有定义高度的条形图。 2. TextView - 位于(1)视图顶部-45,它应代表该列所属的一些数据。

每列的宽度应相等,但文本的长度不同。 但是父母的边界(没有元素是框架或相对布局正在切断文本的其余部分。

P.S。 clipChildren和clipToPadding没有帮助。

我的.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="@dimen/chart_column_width"
android:layout_height="match_parent"
android:clipChildren="false"
android:clipToPadding="false">

<View
    android:id="@+id/cc_progress"
    android:layout_marginLeft="2dp"
    android:layout_marginRight="2dp"
    android:layout_alignParentBottom="true"
    android:background="@color/colorPrimaryDark"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<TextView
    android:id="@+id/cc_tagname"
    android:layout_above="@id/cc_progress"
    android:elevation="2dp"
    android:textSize="20sp"
    android:padding="2dp"
    android:textAlignment="textStart"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
</RelativeLayout>

after all animations with templates boundaries

3 个答案:

答案 0 :(得分:0)

这种情况正在发生,因为您只是在旋转TextView。因此,TextView保留其原始高度和宽度。

尝试使用此VerticalTextView:

`public class VerticalTextView extends TextView{
 final boolean topDown;

 public VerticalTextView(Context context, AttributeSet attrs){
  super(context, attrs);
  final int gravity = getGravity();
  if(Gravity.isVertical(gravity) && (gravity&Gravity.VERTICAL_GRAVITY_MASK) == Gravity.BOTTOM) {
     setGravity((gravity&Gravity.HORIZONTAL_GRAVITY_MASK) | Gravity.TOP);
     topDown = false;
  }else
     topDown = true;
 }

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
   super.onMeasure(heightMeasureSpec, widthMeasureSpec);
   setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}

@Override
protected void onDraw(Canvas canvas){
  TextPaint textPaint = getPaint(); 
  textPaint.setColor(getCurrentTextColor());
  textPaint.drawableState = getDrawableState();

  canvas.save();

  if(topDown){
     canvas.translate(getWidth(), 0);
     canvas.rotate(90);
  }else {
     canvas.translate(0, getHeight());
     canvas.rotate(-90);
  }


  canvas.translate(getCompoundPaddingLeft(), getExtendedPaddingTop());

  getLayout().draw(canvas);
  canvas.restore();
  }
  }`

您只需设置文本的重力即可。默认情况下,文本是从上到下。如果你设置android:gravity =&#34; bottom&#34;,那么它是从下到上绘制的。

希望它对你有所帮助。

答案 1 :(得分:0)

这是一项艰巨的任务但是有可能。我正在解释如何使它成为可能: -

你已经使recyclerview wrap_content并将其保存在relativelayout和scrollview中。

 <ScrollView
    android:layout_width="match_parent"
   android:layout_height="match_parent"
    android:fillViewport="true"
    android:fitsSystemWindows="true">
    <RelativeLayout
        android:id="@+id/rlRoot"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</RelativeLayout>
    </ScrollView>

现在计算recylerview项目的宽度,并在位置(width * itemPosition)的rlRoot中添加textview。它将textview放在精确的X位置。现在要计算Y坐标,您可以在设置条形高度时获得项目的高度,而textView的Y位置应为(rlRoot.getHeight() - itemHeight)。然后给出你想要的任何角度,它永远不会省略。对所有项目重复循环。

我从来没有尝试过,但我猜,它会与你的努力有关。

答案 2 :(得分:0)

覆盖Textview的OnMeasure并增加super.OnMeasure方法的高度