我正在使用按钮和textview创建一个类似结构的条形图。
我想在每个条形图上方显示一些特定值。
如果该值在4位数内,则会正确显示,但只要5位数就会显示。来,文字被包装,如下面的截图所示。
我尝试android:singleLine="true"
,但这并没有改变任何事情。
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<SeekBar
android:id="@+id/seekBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:maxHeight="9dp"
android:minHeight="9dp"
android:padding="10dp"
android:max="100"
android:progressDrawable="@drawable/seekbar_progress"
android:thumb="@drawable/shine_btn" />
<TextView
android:id="@+id/tvValue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/seekBar"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="30dp" />
<LinearLayout
android:id="@+id/Graph01"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:layout_below="@id/seekBar"
android:layout_marginTop="50dp"
android:gravity="bottom"
android:orientation="vertical"
android:weightSum="1" >
<com.example.calci.views.MyTextView
android:id="@+id/tvGraph01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="5dp" />
<Button
android:id="@+id/btnGraph01"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="0.1"
android:background="#99f" />
</LinearLayout>
<LinearLayout
android:id="@+id/Graph02"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:layout_below="@id/seekBar"
android:layout_marginTop="50dp"
android:layout_toRightOf="@id/Graph01"
android:gravity="bottom"
android:orientation="vertical"
android:weightSum="1" >
<com.example.calci.views.MyTextView
android:id="@+id/tvGraph02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="5dp" />
<Button
android:id="@+id/btnGraph02"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="0.1"
android:background="#9f9" />
</LinearLayout>
<!-- AND SO ON... -->
<RelativeLayout />
活性
seekBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromTouch) {
lp = new LinearLayout.LayoutParams(new ViewGroup.MarginLayoutParams(20,
LinearLayout.LayoutParams.WRAP_CONTENT));
lp.setMargins(55, 0, 0, 0);
tvGraph01.setLayoutParams(lp);
tvGraph01.setTextSize(6);
tvGraph01.setGravity(Gravity.CENTER);
lp = new LinearLayout.LayoutParams(new ViewGroup.MarginLayoutParams(20,
LinearLayout.LayoutParams.WRAP_CONTENT));
lp.setMargins(2, 0, 0, 0);
tvGraph02.setLayoutParams(lp);
tvGraph02.setTextSize(6);
tvGraph02.setGravity(Gravity.CENTER);
lp = new LinearLayout.LayoutParams(20, 0, 0.0002f * 2 * progress * 20);
lp.setMargins(55, 0, 0, 0);
btnGraph01.setLayoutParams(lp);
lp = new LinearLayout.LayoutParams(20, 0, 0.0002f * 2 * progress * 15);
lp.setMargins(2, 0, 0, 0);
btnGraph02.setLayoutParams(lp);
}
});
MyTextView
public class MyTextView extends TextView {
@Override
protected void onDraw(Canvas canvas) {
canvas.save();
// RORARING the textbox as I want to show text at right angle.
canvas.rotate(270, getWidth() / 2, getHeight() / 2);
super.onDraw(canvas);
canvas.restore();
}
}
我认为这背后的主要原因是将textview的高度设置为20 我尝试增加textview的高度,但这增加了按钮之间的空间 我尝试了各种重力值,但这也不起作用。
感谢任何帮助...
1)。来自。android:singleLine="true"
或android:ellipsize="end"
或android:maxLines="1"
的任何内容都无法解决我的问题,因为我不想放。 .. 用于文字包装。
我想显示全文。
2)。将android:layout_height="300dp"
设置为LinearLayout
除了增加所有按钮的高度外没有任何区别。
3)。将android:layout_height="150dp"
设置为TextView
没有任何区别,因为我在代码中设置了高度和宽度。
答案 0 :(得分:1)
试试这个:
您正在为linear graph
布局指定修复高度。
而不是:
android:layout_height="200dp"
使用此:
android:layout_height="300dp" or
android:layout_height="wrap_content"
希望它对你有所帮助。
感谢。
答案 1 :(得分:1)
更改布局宽度和高度建议,并检查它是否可以解决
android:layout_width="40px"
android:layout_height="wrap_content"
答案 2 :(得分:1)
在TextView中添加
<强>机器人:SINGLELINE = “真” android:ellipsize =“end”
如果文本数据超过单行,它将添加'...',但请确保您必须将TextView的宽度设置为某些值。如果您需要将宽度保持为 wrapcontent ,而不是使用某些值设置填充。试试吧。!
答案 3 :(得分:1)
Try this,
android:layout_height="150dp"
android:layout_width="wrap_content"
android:maxLength="5"
答案 4 :(得分:0)
需要进行一项重要更改:将 LinearLayout中的android:layout_toRightOf="@id/Graph01
更改为{Graph02 <{1}}
即。即使textview宽度增加,相应的linearlayout也不会受到影响。
另外,我必须为android:layout_toRightOf="@id/tvGraph01"
,tvGraph02
等设置边距。在代码中增加textview的宽度之后。