We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what if I have mutiple elements inside the multistateview?
how do you address them each?
TextView = (TextView) container.getContentView();
What if there is another textview inside the container since ids arent being, i'm lost on how to address multiple elements?
The text was updated successfully, but these errors were encountered:
instead of using list view , use LinearLayout instead and add multiple items inside it.
<com.meetme.android.multistateview.MultiStateView android:id="@+id/list_container" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <ListView android:id="@+id/list_main" android:layout_width="fill_parent" android:layout_height="match_parent" /> </LinearLayout> </com.meetme.android.multistateview.MultiStateView>```
Sorry, something went wrong.
No branches or pull requests
what if I have mutiple elements inside the multistateview?
how do you address them each?
TextView = (TextView) container.getContentView();
What if there is another textview inside the container
since ids arent being, i'm lost on how to address multiple elements?
The text was updated successfully, but these errors were encountered: