Android Studio 0.3.7
你好一個TextView 5DP,顯示從底部
我有以下TextView
是在Linearlayout (vertical)
。
我想在佈局的底部顯示TextView
約5dp
。但是,我似乎無法做到這一點。
我與android:layout_marginBottom
的不同特性和其他一些特性發揮各地也是如此。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Sign Up with StarBucks"
android:id="@+id/tv_signup"
android:clickable="true"
android:textColor="#380aff"
android:enabled="true"
android:textStyle="bold|italic"
android:gravity="center_horizontal"
android:layout_marginBottom="5dp"/>
誰能告訴我什麼是正確的屬性設置,以獲得定位從佈局底部的Textview
。
非常感謝您的任何建議,
感謝那些工作。我是新來的Android,我不知道嵌套的佈局,似乎這個佈局控件時,將是非常有用的。 – ant2009