TextView
kodumu koddan değiştirmeye çalışıyorum.Change TextView text
Bu benim xml neye benzediği:
XML:
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal" />
Ve kod:
TextView tv1 = (TextView)findViewById(R.id.textView1);
tv1.setText("Hello");
setContentView(tv1);
Cihazımda bir hata alıyorum ve uygulama durur. Bir TextView
(bir XML TextView
'a bağlı değil) göstermeye çalıştım ve çalıştı.
ur logcat göstermek bilmek istiyorum ... –
TextView'un Ebeveyninizin görünüm olarak ayarlanamaz budur. TextView'u bir LinearLayout ile kuşatmanız gerekecek. – SamSPICA
^doğru Bize oncreate yönteminizi gösterin, xml dosyanızın adı nedir? – Hades