मेरे पास निम्नलिखित लेआउट है (लगभग खाली):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/set_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="content desc"
android:orientation="vertical" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, I am a TextView" />
</LinearLayout>
गतिविधि वर्ग में निम्नलिखित शामिल हैं:
public class TestActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
}
}
जब मैं अपने मोबाइल डिवाइस पर इसे चलाता हूं तो मुझे निम्नलिखित त्रुटि मिलती है:
SpannableStringBuilder
SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
मैंने TextView के साथ और उसके बिना यह कोशिश की है और त्रुटि अभी भी बनी हुई है, मुझे इस तरह के मूल लेआउट के लिए कुछ मौलिक रूप से गलत करना चाहिए।
क्या किसी के पास कोई विचार है कि मैं त्रुटि के बिना लोड करने के लिए इसे कैसे प्राप्त कर सकता हूं?
android:contentDescription
सेLinearLayout
, के रूप में है कि कंटेनर फ़ोकस करने योग्य नहीं है और इसलिए वर्णन AFAIK उपयोग नहीं किया जाएगा है।