Skip to content

Instantly share code, notes, and snippets.

@mrabelwahed
Created January 25, 2018 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrabelwahed/17291abd52f5c4480a87e02ef81d16d7 to your computer and use it in GitHub Desktop.
Save mrabelwahed/17291abd52f5c4480a87e02ef81d16d7 to your computer and use it in GitHub Desktop.
package com.ramadan_apps.test;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.ramadan_apps.mylibrary.CircleView;
public class MainActivity extends AppCompatActivity {
CircleView circleView ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
circleView = findViewById(R.id.circle);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment