我的TextView文本不可见

时间:2014-04-19 19:44:54

标签: java android textview

尽管有很多摆弄,但我无法看到我的TextView。

我已经设置了一个字符串,该字符串应该包含要在TextView中显示的文本,但在图形布局中永远不会看到该文本。即使我使用“android:text =”text“,并改变大小,外观等,也没有任何变化。

我的Java代码:

    public class MainClass extends Activity {

    float goldCount = 0.0f;
ImageView minionClick;
TextView textGoldCount;
String textTotal;

@Override
public void onCreate (Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mainlayout);

    minionClick = (ImageView) findViewById(R.id.minioncentreid);
    textGoldCount = (TextView) findViewById(R.id.textviewtop);

    textTotal = goldCount + " Gold";


    textGoldCount.setText(textTotal);`

我的XML代码:

`<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayoutid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/mainbackground"
>

<TextView
    android:id="@+id/textviewtop"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="25">

</TextView>
<ImageView
    android:id="@+id/minioncentreid"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="50"
    android:contentDescription="@+string/desc"
    android:src="@drawable/minioncentrethree"
    />
<TextView 
    android:id="@+id/textviewbottom"
    android:layout_weight="25"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    >
    </TextView>

`

底部的TextView就是中间的图像居中。我只是将其删除并检查,但它没有解决问题。

2 个答案:

答案 0 :(得分:0)

不确定,但可能与weightheight属性中的值有关。您必须将高度声明为0,如下所示:

<TextView
    android:id="@+id/textviewtop"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="1" >  // 25 and 50 can be replaced by 1 and 2

<ImageView
    android:id="@+id/minioncentreid"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="2"
    android:contentDescription="@+string/desc"
    android:src="@drawable/minioncentrethree" />

<TextView 
    android:id="@+id/textviewbottom"
    android:layout_weight="1"
    android:layout_height="0dip"
    android:layout_width="wrap_content" />  

让我知道这是否有效。

答案 1 :(得分:0)

我还要添加到Filo的答案中,您应该在android:weightSum中使用LinearLayout属性,根据您的布局,该属性应为100(25 + 50 + 25)。