layout\textview_mystyle.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/myStyleText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
then in your code:
TextView tv = (TextView)getLayoutInflater().inflate(R.layout.textview_mystyle, null);
No comments:
Post a Comment