从另一个xml元素引用XML属性

时间:2014-01-25 13:55:11

标签: android xml

我正在尝试新的东西(好吧,我也是xml和android的新手)。在我的脑力激荡期间,我想起了这件事。是否可以为元素的值引用XML元素属性? (对不起,英语不太好)

想法:

<SeekBar
    android:id="@+id/seekBar1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/textView1"
    android:layout_below="@+id/textView3"
    android:layout_marginLeft="15dp"
    android:layout_marginTop="12dp"
    android:layout_toRightOf="@+id/textView4"
    android:max="9"
    android:progress="0" />

<TextView
    android:id="@+id/textView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/textView5"
    android:layout_toRightOf="@+id/seekBar1"
    **android:text="@id/seekBar1/progress"**
    android:textAppearance="?android:attr/textAppearanceSmall" />

突出显示的部分。感谢阅读和可能的答案

1 个答案:

答案 0 :(得分:1)

简单回答:,不幸的是,不是。

即使它有效,还有两个问题:

  • 您似乎希望在TextView进展时更新SeekBar,即使参考可行也不会有效。

  • 系统必须自动将进度(浮动)转换为String。