and I wanted to test the sanageles in emulator and
I've got this error in res-> layout -> main.xml
Unable to resolve dimension value "match_parent" in attribute "layout_width"
so replace match_parent with wrap_content everywhere in main.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Hello World, DemoActivity" | |
/> | |
</LinearLayout> |
No comments:
Post a Comment