<Button android:id=”@+id/mapViewBtn” android:layout_width=”0dp” android:layout_height=”wrap_content” android:layout_weight=”1″ android:text=”test” <– add text to the button android:textSize=”12sp” android:onClick=”mapClick” android:drawableTop=”@drawable/btm_map_btn_small”   <– add icon on the top of the button style=”?android:attr/buttonBarButtonStyle” <– remove the border of the button />

Read More →

We could use find + xargs to make it happen. For example, I would like to delete file with file name “.DS_Store” and “._” we could execute the code like below find . -name “.DS_Store” -print0 | xargs -0 rm -rf  find . -name “._*” -print0 | xargs -0 rm -rf

Read More →