The question is that I added a custom View
element to my project.
<org.adw.library.widgets.discreteseekbar.DiscreteSeekBar android:id="@+id/dsbHeight" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="6" app:dsb_indicatorColor="@color/color_white" app:dsb_indicatorFormatter="%03d Cm" app:dsb_indicatorTextAppearance="@style/CustomFloaterTextAppearance" app:dsb_max="220" app:dsb_min="145" app:dsb_progressColor="@color/ntz_color_lilac" app:dsb_rippleColor="@color/ntz_color_yellow" app:dsb_scrubberHeight="10dp" app:dsb_thumbSize="25dp" app:dsb_trackColor="@color/ntz_color_blue" app:dsb_trackHeight="10dip" app:dsb_value="155" />
and in order that I could access functions that are read from the app
as shown above, I added such a line to the header of the XML
file
xmlns:app="http://schemas.android.com/apk/res-auto"
And as I understand it, there is a library with various functions, the path to which we have indicated, after which we can use its capabilities. The question is where you can see the file with all its possible functions? I understand that he is on this path //schemas.android.com/apk/res-auto
, but I do not have the res-auto
folder in the project ... In general, I got confused
xmlns:local="http://schemas.android.com/apk/com.my.package.name"
, then we added everything and the autogenerator of the localnamespace
and everyone started writingxmlns:local="http://schemas.android.com/apk/res-auto"
- LamerXaKer